mirror of
https://github.com/pi-hole/web.git
synced 2026-02-24 11:46:02 +00:00
7 lines
302 B
CSS
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);
|