about summary refs log tree commit diff
path: root/src/lib/themes.ts
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2024-08-12 06:30:18 +0900
committerGitHub <noreply@github.com>2024-08-11 14:30:18 -0700
commit88f879ffe91fb7bff668c81b5a82fb4cfbd7889b (patch)
tree9717e7cb757ad566b1ea4d1023911ed301c476ef /src/lib/themes.ts
parent6f450b4982405535ebccba24f2e32940b161d57f (diff)
downloadvoidsky-88f879ffe91fb7bff668c81b5a82fb4cfbd7889b.tar.zst
Improve styles (#4916)
Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/lib/themes.ts')
-rw-r--r--src/lib/themes.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/themes.ts b/src/lib/themes.ts
index f3382fc43..9590f1659 100644
--- a/src/lib/themes.ts
+++ b/src/lib/themes.ts
@@ -295,9 +295,9 @@ export const darkTheme: Theme = {
     ...defaultTheme.palette,
     default: {
       background: darkPalette.black,
-      backgroundLight: darkPalette.contrast_50,
+      backgroundLight: darkPalette.contrast_25,
       text: darkPalette.white,
-      textLight: darkPalette.contrast_700,
+      textLight: darkPalette.contrast_600,
       textInverted: darkPalette.black,
       link: darkPalette.primary_500,
       border: darkPalette.contrast_100,
@@ -344,7 +344,7 @@ export const dimTheme: Theme = {
     default: {
       ...darkTheme.palette.default,
       background: dimPalette.black,
-      backgroundLight: dimPalette.contrast_50,
+      backgroundLight: dimPalette.contrast_25,
       text: dimPalette.white,
       textLight: dimPalette.contrast_700,
       textInverted: dimPalette.black,