piraattipuolue.github.io/assets/main.scss

32 lines
542 B
SCSS
Raw Normal View History

---
#
---
@import "{{ site.theme }}";
:root {
2024-05-26 16:47:59 +03:00
color-scheme: light dark !important;
}
* {
color: revert !important;
text-color: revert !important;
background-color: revert !important;
}
2024-05-27 07:59:02 +03:00
@media (prefers-color-scheme: dark) {
.site-nav {
color-scheme: only dark !important;
color: #ffffff !important;
background-color: #1c1b22 !important;
}
}
@media (prefers-color-scheme: light) {
.site-nav {
color-scheme: only light !important;
color: #000000 !important;
background-color: #ffffff !important;
}
}