10 lines
114 B
SCSS
10 lines
114 B
SCSS
|
:root {
|
||
|
@include theme-light;
|
||
|
}
|
||
|
|
||
|
@media (prefers-color-scheme: dark) {
|
||
|
:root {
|
||
|
@include theme-dark;
|
||
|
}
|
||
|
}
|