Fix hardcoded color

This commit is contained in:
undergroundwires 2021-12-27 22:29:54 +01:00
parent 848b6879b3
commit c56f03dbca
2 changed files with 5 additions and 3 deletions

View file

@ -191,14 +191,14 @@ figure {
em, i, strong {
// Default
color: black;
color: $light-color-variant;
@media (prefers-color-scheme: dark) {
color: white;
color: $dark-color-variant;
}
@media (prefers-color-scheme: light) {
color: black;
color: $light-color-variant;
}
[data-theme=dark] & {