diff options
author | Eric Bailey <git@esb.lol> | 2024-02-16 11:54:40 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 09:54:40 -0800 |
commit | e303940eaa4ba5742a6b8c579e5f814345786d69 (patch) | |
tree | a71f1a434ee376c690b4d59090097d945eae5a08 /src/lib/themes.ts | |
parent | ae9f893723819856ff2f422a139ea199308c9b38 (diff) | |
download | voidsky-e303940eaa4ba5742a6b8c579e5f814345786d69.tar.zst |
Bump contrast on dim mode for old ds (#2888)
Diffstat (limited to 'src/lib/themes.ts')
-rw-r--r-- | src/lib/themes.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/lib/themes.ts b/src/lib/themes.ts index 9a3880b92..f75ac8ab4 100644 --- a/src/lib/themes.ts +++ b/src/lib/themes.ts @@ -344,6 +344,25 @@ export const dimTheme: Theme = { default: { ...darkTheme.palette.default, background: dimPalette.black, + backgroundLight: dimPalette.contrast_50, + text: dimPalette.white, + textLight: dimPalette.contrast_700, + textInverted: dimPalette.black, + link: dimPalette.primary_500, + border: dimPalette.contrast_100, + borderDark: dimPalette.contrast_200, + icon: dimPalette.contrast_500, + + // non-standard + textVeryLight: dimPalette.contrast_400, + replyLine: dimPalette.contrast_100, + replyLineDot: dimPalette.contrast_200, + unreadNotifBg: dimPalette.primary_975, + unreadNotifBorder: dimPalette.primary_900, + postCtrl: dimPalette.contrast_500, + brandText: dimPalette.primary_500, + emptyStateIcon: dimPalette.contrast_300, + borderLinkHover: dimPalette.contrast_300, }, }, } |