Auto mode theme doesn't respect dark mode theme
Closed this issue · 2 comments
jcs090218 commented
Hi, I've changed the dark theme in static/custom.css
, but the auto theme mode doesn't change accordingly to the dark theme. 🤔
Changed in Dark Mode
Colors remain the same in Auto Mode
The website link: https://cl-qob.github.io/
xoxys commented
Hi please check https://geekdocs.de/features/theming/ again. You added the media query but not the top level :root[color-theme="dark"]
customization.
jcs090218 commented
Thanks! Adding the following works!
:root[color-theme="dark"] {
--body-background: #3F3F3F;
--accent-color-lite: #2E2E2E;
}