thegeeklab/hugo-geekdoc

Auto mode theme doesn't respect dark mode theme

Closed this issue · 2 comments

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

2024-11-05 21 51 12

Colors remain the same in Auto Mode

2024-11-05 21 51 27

The website link: https://cl-qob.github.io/

Hi please check https://geekdocs.de/features/theming/ again. You added the media query but not the top level :root[color-theme="dark"] customization.

Thanks! Adding the following works!

:root[color-theme="dark"] {
  --body-background: #3F3F3F;
  --accent-color-lite: #2E2E2E;
}