Skip to content

Commit 2a86fa4

Browse files
committed
better dark mode switching
1 parent 8c3f782 commit 2a86fa4

File tree

2 files changed

+14
-19
lines changed

2 files changed

+14
-19
lines changed

serve.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@REM Serve the site on localhost using python's built in server.
22
@echo off
33
pushd deploy
4-
start "local server" py -m http.server
4+
start "local server" python -m http.server
55
start chrome.exe "http://localhost:8000/index.html"
66
popd

static-site-gen/site.cpp

+13-18
Original file line numberDiff line numberDiff line change
@@ -44,28 +44,23 @@ R"(
4444
<link rel="stylesheet" href="/dwarf.css">
4545
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
4646
</head>
47+
48+
<body>
4749
<script>
48-
50+
var theme = localStorage.getItem('theme') || 'light';
51+
52+
// window.onload = function() {
53+
document.querySelector('body').setAttribute('data-theme', theme);
54+
// }
55+
4956
function toggleNight() {
50-
document.body.classList.toggle("night");
51-
const val = document.body.classList.contains("night");
52-
localStorage.setItem('theme', val);
53-
console.log(val);
57+
console.log('toggle');
58+
theme = (theme == 'light')? 'night' : 'light';
59+
localStorage.setItem('theme', theme);
60+
document.querySelector('body').setAttribute('data-theme', theme);
5461
}
55-
56-
window.onload = function() {
57-
const saved = localStorage.getItem('theme');
58-
if (saved === 'true') {
59-
document.body.classList.add('night');
60-
}
61-
full_path = location.href.split('#')[0];
62-
Array.from(document.getElementById("nav-links").getElementsByTagName("a"))
63-
.filter(l => l.href.split("#")[0] == full_path)
64-
.forEach(l => l.className += " current");
65-
}
66-
</script>
67-
<body>
6862
63+
</script>
6964
<div class="wrapper">
7065
<main class="page-content" aria-label="Content">
7166

0 commit comments

Comments
 (0)