about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
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,