[ui] dark mode by default

feat/vaults
Tomáš Mládek 2022-02-04 20:25:14 +01:00
parent 9b978c39d1
commit a7efb4766b
No known key found for this signature in database
GPG Key ID: ED21612889E75EC5
1 changed files with 21 additions and 21 deletions

View File

@ -38,7 +38,8 @@
}
}
html {
@media (prefers-color-scheme: light) {
html {
@include rebase(
colors.$base3,
colors.$base2,
@ -49,10 +50,10 @@ html {
colors.$base02,
colors.$base03
);
}
}
@media (prefers-color-scheme: dark) {
html {
html {
@include rebase(
colors.$base03,
colors.$base02,
@ -63,7 +64,6 @@ html {
colors.$base2,
colors.$base3
);
}
}
html,