From 6f7029ec6bea924119eb442f4eab117f6ce3fc55 Mon Sep 17 00:00:00 2001 From: Tyler Flowers Date: Sun, 6 Aug 2023 03:07:49 +0000 Subject: [PATCH] Add monochrome icons in CSS --- static/styles.css | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/static/styles.css b/static/styles.css index a00b1ca05..2e23628e4 100644 --- a/static/styles.css +++ b/static/styles.css @@ -1,3 +1,12 @@ -h1 { +h1 { text-align: center; -} \ No newline at end of file +} + +/* Icons */ +html.dark ul.flex-col > li > a > svg { + color: white !important; +} + +:not(html.dark) ul.flex-col > li > a > svg { + color: black; +}