FrontierThemes/theme-frontier-auto.css

17 lines
311 B
CSS
Raw Permalink Normal View History

2023-04-10 17:00:22 +00:00
@media (prefers-color-scheme: light) {
:root {
--colorPrimary: 52, 173, 51;
--colorBackground: 255, 255, 255;
--colorText: 16, 16, 16;
}
}
@media (prefers-color-scheme: dark) {
:root {
--colorPrimary: 52, 173, 51;
--colorBackground: 16, 16, 16;
--colorText: 255, 255, 255;
}
2023-04-10 16:57:29 +00:00
}