xi-conversations

Minimal clone of thunderbird conversations
git clone https://git.ce9e.org/xi-conversations.git

commit
db0592b40d6e612cbce1d2b6377599274d7b2a08
parent
680fcaa06d9e33a35cb1576c4eb177bc796cfe15
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-01-16 21:56
implement dark theme manually

Diffstat

M src/scss/style.scss 12 ++++++++++++

1 files changed, 12 insertions, 0 deletions


diff --git a/src/scss/style.scss b/src/scss/style.scss

@@ -8,6 +8,18 @@
    8     8 	--highlight-fg: -moz-CellHighlightText;
    9     9 }
   10    10 
   -1    11 @media (prefers-color-scheme: dark) {
   -1    12 	:root {
   -1    13 		--bg-tint: #000;
   -1    14 		--bg: #111;
   -1    15 		--fg: #fff;
   -1    16 		--border: #222;
   -1    17 		--odd: #222;
   -1    18 		--highlight-bg: #555;
   -1    19 		--highlight-fg: #fff;
   -1    20 	}
   -1    21 }
   -1    22 
   11    23 @import 'components/alert';
   12    24 @import 'components/attachments';
   13    25 @import 'components/button';