14 lines
359 B
JavaScript
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");
|
|
}
|
|
})();
|