aboutsummaryrefslogtreecommitdiff
path: root/themes/hugo-pt2021
diff options
context:
space:
mode:
Diffstat (limited to 'themes/hugo-pt2021')
-rw-r--r--themes/hugo-pt2021/assets/script.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/themes/hugo-pt2021/assets/script.js b/themes/hugo-pt2021/assets/script.js
index b879f64..f7b3973 100644
--- a/themes/hugo-pt2021/assets/script.js
+++ b/themes/hugo-pt2021/assets/script.js
@@ -58,10 +58,11 @@ const D = document,
// use theme if set, otherwise fall back to browser preference
// FIXME: move to DOMContentLoaded?
-if (L && L.theme && L.theme === 'dark') {
- C.add('dark'); // theme set to "dark"
-} else if ((!L || !L.theme) && M && M('(prefers-color-scheme: dark)').matches) {
- C.add('dark'); // prefers dark color scheme
+C.add('dark'); // unconditionally set dark mode
+if (L && L.theme && L.theme === 'light') {
+ C.remove('dark'); // set light theme
+} else if ((!L || !L.theme) && M && M('(prefers-color-scheme: light)').matches) {
+ C.remove('dark'); // set light theme
}
document.addEventListener('DOMContentLoaded', () => {