hugo-theme-anubis2/layouts/partials/cssColors.html
Dmitry Kolosov aedb7a3aa8 Small fixes
2020-07-09 22:21:39 +03:00

19 lines
425 B
HTML

<style>
{{ if eq site.Params.style "dark-without-switcher" }}
:root {
{{ partial "dark.css" . | safeCSS }}
}
{{ else if eq site.Params.style "auto-without-switcher" }}
@media (prefers-color-scheme: dark) {
:root {
{{ partial "dark.css" . | safeCSS }}
}
}
{{else }}
[data-theme="dark"] {
{{ partial "dark.css" . | safeCSS }}
}
{{ end }}
</style>