hugo-theme-anubis2/layouts/partials/cssColors.html
Dmitry Kolosov 5be39c3882 Dark theme
2020-07-09 22:15:38 +03:00

18 lines
424 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>