diff options
author | dan <dan.abramov@gmail.com> | 2024-02-23 23:09:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-23 15:09:50 -0800 |
commit | 6ae9c5d45c6f12ee015fa2ed6857948825f44322 (patch) | |
tree | b19bddd6f1c0f4f55a483a6ef1f1c369f1bac55b /src/view/com/post-thread/PostThreadItem.tsx | |
parent | de9df50af3af7807fb97723df92a557fc5361812 (diff) | |
download | voidsky-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/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 2ef1b1447..ebd739839 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -449,7 +449,7 @@ let PostThreadItemLoaded = ({ styles.replyLine, { flexGrow: 1, - backgroundColor: pal.colors.border, + backgroundColor: pal.colors.replyLine, marginBottom: 4, }, ]} @@ -487,7 +487,7 @@ let PostThreadItemLoaded = ({ styles.replyLine, { flexGrow: 1, - backgroundColor: pal.colors.border, + backgroundColor: pal.colors.replyLine, marginTop: 4, }, ]} |