a new start

This commit is contained in:
2025-10-25 12:39:30 +02:00
commit c97cadef78
726 changed files with 454051 additions and 0 deletions

9
_includes/scripts/dark-mode.min.js vendored Normal file
View File

@@ -0,0 +1,9 @@
((e, s) => {
var d = "light-mode",
a = "dark-mode",
o = new Date().getHours();
("matchMedia" in e && e.matchMedia("(prefers-color-scheme)")) ||
((e = (o = o <= e._sunrise || o >= e._sunset ? a : d) == a ? d : a),
s.body.classList.add(o),
s.body.classList.remove(e));
})(window, document);