diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-04-13 16:10:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 16:10:27 -0700 |
commit | f917c426a090ceed905cc18d3461c47756a3deab (patch) | |
tree | bb8cb4556d45836fdbf8041dbc0c12b869f9e57a /src/lib/themes.ts | |
parent | 5caa6a5e08c02464bcbc45afc236f48add458165 (diff) | |
download | voidsky-f917c426a090ceed905cc18d3461c47756a3deab.tar.zst |
Web darkmode fixes (#474)
* Change dark mode borders to be slightly lighter than the bg rather than slightly darker * Add dark mode styling to web composer * Fix editprofile darkmode
Diffstat (limited to 'src/lib/themes.ts')
-rw-r--r-- | src/lib/themes.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/themes.ts b/src/lib/themes.ts index d7043ad2d..76d4fbf2f 100644 --- a/src/lib/themes.ts +++ b/src/lib/themes.ts @@ -297,7 +297,7 @@ export const darkTheme: Theme = { textLight: colors.gray3, textInverted: colors.black, link: colors.blue3, - border: colors.black, + border: colors.gray7, borderDark: colors.gray6, icon: colors.gray4, |