finga
4aff0378ac
Deprecate the bulma css framework in favor of normalize and milligram. Adapt the templates to work with the new css libraries.
18 lines
319 B
SCSS
18 lines
319 B
SCSS
@media (prefers-color-scheme: dark) {
|
|
html, body {
|
|
background-color: $color-dark-initial;
|
|
color: $color-dark-secondary;
|
|
}
|
|
|
|
a {
|
|
color: $color-dark-primary;
|
|
}
|
|
|
|
a:visited {
|
|
color: $color-dark-quaternary;
|
|
}
|
|
|
|
a:hover {
|
|
color: $color-dark-tertiary;
|
|
}
|
|
}
|