mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
23 lines
343 B
SCSS
23 lines
343 B
SCSS
@mixin taxonomy_dark {
|
|
.taxonomy-element {
|
|
background-color: $alt-bg-color-dark;
|
|
|
|
a {
|
|
color: $fg-color-dark;
|
|
}
|
|
a:active {
|
|
color: $fg-color-dark;
|
|
}
|
|
}
|
|
}
|
|
|
|
body.colorscheme-dark {
|
|
@include taxonomy_dark();
|
|
}
|
|
|
|
body.colorscheme-auto {
|
|
@media (prefers-color-scheme: dark) {
|
|
@include taxonomy_dark();
|
|
}
|
|
}
|