mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2025-05-12 22:25:43 -04:00
automatic theme based on browser theme
usage: add to config params: defaultTheme: "auto"
This commit is contained in:
parent
3081579764
commit
2eef3fcc12
1 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
{{ if eq .Site.Params.defaultTheme "auto" }}
|
||||
<script>
|
||||
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
||||
document.body.classList.add('dark');
|
||||
}
|
||||
</script>
|
||||
{{ end }}
|
||||
<header class="header">
|
||||
<nav class="nav">
|
||||
{{- if .IsHome }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue