FrontierThemes/theme-frontier-auto.css
2023-04-10 19:00:22 +02:00

17 lines
311 B
CSS

@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;
}
}