We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7290c1d commit ccae33fCopy full SHA for ccae33f
layouts/index.html
@@ -18,14 +18,7 @@
18
<!--================= add analytics if enabled =========================-->
19
{{- partial "analytics.html" . -}}
20
<script>
21
- theme = localStorage.getItem('theme-scheme') || localStorage.getItem('darkmode:color-scheme') || 'light';
22
- if (theme == 'system') {
23
- if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
24
- theme = 'dark';
25
- } else {
26
- theme = 'light';
27
- }
28
+ theme = 'dark';
29
document.documentElement.setAttribute('data-theme', theme);
30
</script>
31
</head>
0 commit comments