feat: changes to the auto theme

This commit is contained in:
TheClashFruit 2023-04-10 19:00:22 +02:00
parent 28e5dde2d3
commit fe5b625a92

View file

@ -1,4 +1,17 @@
:root {
--color-bg: 16, 16, 16;
--color-text: 255, 255, 255;
@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;
}
}