aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2025-03-31 13:39:41 -0400
committerPaul Duncan <pabs@pablotron.org>2025-03-31 13:39:41 -0400
commit71221cf57376b957843ccd3039966428fbcb0d51 (patch)
treec358f73a66ea7cc0fdbb30ce27b8449787830c83
parent76467b8a2256b39e91b90552a37f6a7e0af6d1b1 (diff)
downloadpablotron.org-71221cf57376b957843ccd3039966428fbcb0d51.tar.xz
pablotron.org-71221cf57376b957843ccd3039966428fbcb0d51.zip
themes/hugo-pt2021: default to dark mode
-rw-r--r--themes/hugo-pt2021/assets/script.js1
-rw-r--r--themes/hugo-pt2021/layouts/_default/baseof.html2
-rw-r--r--themes/hugo-pt2021/layouts/index.html2
-rw-r--r--themes/hugo-pt2021/layouts/partials/head.html2
4 files changed, 3 insertions, 4 deletions
diff --git a/themes/hugo-pt2021/assets/script.js b/themes/hugo-pt2021/assets/script.js
index ae47804..c1086cc 100644
--- a/themes/hugo-pt2021/assets/script.js
+++ b/themes/hugo-pt2021/assets/script.js
@@ -66,7 +66,6 @@ const D = document,
// the old logic also attempted to account for "prefers-color-scheme:
// light", but i want the default to be dark unless it is explicitly
// overridden.
-C.add('dark'); // unconditionally set dark mode
if (L && L.theme && L.theme === 'light') {
C.remove('dark'); // set light theme
}
diff --git a/themes/hugo-pt2021/layouts/_default/baseof.html b/themes/hugo-pt2021/layouts/_default/baseof.html
index 614edd0..967c783 100644
--- a/themes/hugo-pt2021/layouts/_default/baseof.html
+++ b/themes/hugo-pt2021/layouts/_default/baseof.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<html lang='{{$.Site.LanguageCode}}'>
+<html class='dark' lang='{{$.Site.LanguageCode}}'>
{{- partial "head.html" . -}}
<body>
diff --git a/themes/hugo-pt2021/layouts/index.html b/themes/hugo-pt2021/layouts/index.html
index 5188e29..ce4303e 100644
--- a/themes/hugo-pt2021/layouts/index.html
+++ b/themes/hugo-pt2021/layouts/index.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<html lang='{{.Site.LanguageCode}}'>
+<html class='dark' lang='{{.Site.LanguageCode}}'>
{{- partial "head.html" . -}}
<body>
diff --git a/themes/hugo-pt2021/layouts/partials/head.html b/themes/hugo-pt2021/layouts/partials/head.html
index 422347d..29139d5 100644
--- a/themes/hugo-pt2021/layouts/partials/head.html
+++ b/themes/hugo-pt2021/layouts/partials/head.html
@@ -1,4 +1,4 @@
-<head>
+<head class='dark'>
<meta charset='utf-8'/>
{{/* add go-import meta tag */}}