about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorwhey.party <132627503+rimar1337@users.noreply.github.com>2024-09-23 22:24:36 +0700
committerGitHub <noreply@github.com>2024-09-23 10:24:36 -0500
commit87d601e68d38b1337639b0d89cbd074147fa6236 (patch)
treecd156de1fa02671c129d2fe2a026c4f5be534ce8 /src
parent4e8d86db317864257f6416cd867d7bb07baca6d0 (diff)
downloadvoidsky-87d601e68d38b1337639b0d89cbd074147fa6236.tar.zst
changed white (gray_0) text to offwhite (gray_25) (#5453)
Diffstat (limited to 'src')
-rw-r--r--src/alf/themes.ts2
-rw-r--r--src/lib/themes.ts4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/alf/themes.ts b/src/alf/themes.ts
index f5d2247f9..9f7ec5c67 100644
--- a/src/alf/themes.ts
+++ b/src/alf/themes.ts
@@ -183,7 +183,7 @@ export function createThemes({
   } as const
 
   const darkPalette: Palette = {
-    white: color.gray_0,
+    white: color.gray_25,
     black: color.trueBlack,
 
     contrast_25: color.gray_975,
diff --git a/src/lib/themes.ts b/src/lib/themes.ts
index 503079993..eb11872fa 100644
--- a/src/lib/themes.ts
+++ b/src/lib/themes.ts
@@ -325,11 +325,11 @@ export const darkTheme: Theme = {
       textInverted: colors.green2,
     },
     inverted: {
-      background: lightPalette.white,
+      background: darkPalette.white,
       backgroundLight: lightPalette.contrast_50,
       text: lightPalette.black,
       textLight: lightPalette.contrast_700,
-      textInverted: lightPalette.white,
+      textInverted: darkPalette.white,
       link: lightPalette.primary_500,
       border: lightPalette.contrast_100,
       borderDark: lightPalette.contrast_200,