Files
oslstats/pkg/embedfs/files/js/theme.js
2026-01-21 20:03:02 +11:00

14 lines
359 B
JavaScript

(function() {
let theme = localStorage.getItem("theme") || "system";
if (theme === "system") {
theme = window.matchMedia("(prefers-color-scheme: dark)").matches
? "dark"
: "light";
}
if (theme === "dark") {
document.documentElement.classList.add("dark");
} else {
document.documentElement.classList.remove("dark");
}
})();