From 5b478bf461be715482ecd85be02503674c565ae8 Mon Sep 17 00:00:00 2001 From: leo ouyang Date: Fri, 15 Apr 2022 11:59:27 -0400 Subject: [PATCH] dark mode no longer inverts colors --- src/App.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/App.css b/src/App.css index 55b3c79..04cbe55 100644 --- a/src/App.css +++ b/src/App.css @@ -302,15 +302,18 @@ footer { .dark-content { background-color: black; + color: #D4CECD } -.dark-content footer, .dark-content header, .dark-content .search-results{ - filter:invert(1); +.dark-content h1, .dark-content h2, .dark-content h3, .dark-content h4, .dark-content h5, .dark-content h6 { + color: #DDDDDD !important; } +.dark-content small{ + color: #A29D9C +} .dark-content a{ - filter: invert(1); color: #58a0d3; }