#151, move SCSS vars to CSS vars, implement dark and light modes by browser preference
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
:root {
|
||||
@include theme-light;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
@include theme-dark;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user