about summary refs log tree commit diff
path: root/src/lib/themes.ts
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2024-02-23 23:09:50 +0000
committerGitHub <noreply@github.com>2024-02-23 15:09:50 -0800
commit6ae9c5d45c6f12ee015fa2ed6857948825f44322 (patch)
treeb19bddd6f1c0f4f55a483a6ef1f1c369f1bac55b /src/lib/themes.ts
parentde9df50af3af7807fb97723df92a557fc5361812 (diff)
downloadvoidsky-6ae9c5d45c6f12ee015fa2ed6857948825f44322.tar.zst
Make dim theme dim (#2966)
* Make dim color scheme dim

* Tweaks

* Overall tweaks

* We have to go darker

* Tweak saturation of blues in dim

* Increase contrast on dark-dark mode

* adjust dim

---------

Co-authored-by: Eric Bailey <git@esb.lol>
Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/lib/themes.ts')
-rw-r--r--src/lib/themes.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/themes.ts b/src/lib/themes.ts
index f75ac8ab4..bd75aabea 100644
--- a/src/lib/themes.ts
+++ b/src/lib/themes.ts
@@ -306,7 +306,7 @@ export const darkTheme: Theme = {
 
       // non-standard
       textVeryLight: darkPalette.contrast_400,
-      replyLine: darkPalette.contrast_100,
+      replyLine: darkPalette.contrast_200,
       replyLineDot: darkPalette.contrast_200,
       unreadNotifBg: darkPalette.primary_975,
       unreadNotifBorder: darkPalette.primary_900,
@@ -355,7 +355,7 @@ export const dimTheme: Theme = {
 
       // non-standard
       textVeryLight: dimPalette.contrast_400,
-      replyLine: dimPalette.contrast_100,
+      replyLine: dimPalette.contrast_200,
       replyLineDot: dimPalette.contrast_200,
       unreadNotifBg: dimPalette.primary_975,
       unreadNotifBorder: dimPalette.primary_900,