diff options
author | Eric Bailey <git@esb.lol> | 2024-01-18 22:54:20 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 20:54:20 -0800 |
commit | 9803e174494c199cc426f70f04fb024518f05473 (patch) | |
tree | 86a3f5a16f716734201784c8b1f88c644d2df4bf /src/alf/themes.ts | |
parent | 95f70a9a6aec3a4c1b23f837a26bc5c0d4266554 (diff) | |
download | voidsky-9803e174494c199cc426f70f04fb024518f05473.tar.zst |
Use new palette values for main palette (#2566)
* Use new palette values for main palette * Drawer bg in dark mode
Diffstat (limited to 'src/alf/themes.ts')
-rw-r--r-- | src/alf/themes.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alf/themes.ts b/src/alf/themes.ts index acd180333..7c6b7dab4 100644 --- a/src/alf/themes.ts +++ b/src/alf/themes.ts @@ -171,7 +171,7 @@ export const light = { backgroundColor: lightPalette.contrast_300, }, border: { - borderColor: lightPalette.contrast_200, + borderColor: lightPalette.contrast_100, }, border_contrast: { borderColor: lightPalette.contrast_400, @@ -278,7 +278,7 @@ export const dark: Theme = { color: darkPalette.black, }, bg: { - backgroundColor: darkPalette.contrast_25, + backgroundColor: darkPalette.black, }, bg_contrast_25: { backgroundColor: darkPalette.contrast_50, |