Files
web/style/themes/default-auto.css
Alex Lamond 7aace0920b Updated theme naming
Signed-off-by: Alex Lamond <9060360+AlexLamond@users.noreply.github.com>
2021-06-22 12:52:24 +02:00

7 lines
302 B
CSS

/* Code courtesy of https://blog.jim-nielsen.com/2019/conditional-syntax-highlighting-in-dark-mode-with-css-imports/ */
/* Assume light mode by default */
@import "default-light.css" screen;
/* Supersede dark mode when applicable */
@import "default-dark.css" screen and (prefers-color-scheme: dark);