blob: 8324ef5f718008fc7f1b353a9b2ba10b30ea344b (
plain)
1
2
3
4
5
6
7
8
9
10
|
/*
theme-title: Solarized (auto)
theme-description: Solarized theme that adapts to system preferences
*/
/* Default to dark theme */
@import url("solarized-dark.css");
@import url("solarized-light.css") screen and (prefers-color-scheme: light);
@import url("solarized-dark.css") screen and (prefers-color-scheme: dark);
|