blob: 44db6a2ff6bca30d559e6ffd9cbca6605a574cfe (
plain)
1
2
3
4
5
6
7
8
9
10
|
/*
theme-title: Hacker (auto)
theme-description: Monospace theme with green highlights (adapts to system light/dark preferences)
*/
/* Default to dark theme */
@import url("hacker-dark.css");
@import url("hacker-light.css") screen and (prefers-color-scheme: light);
@import url("hacker-dark.css") screen and (prefers-color-scheme: dark);
|