mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 05:14:06 -06:00
29 lines
850 B
JavaScript
29 lines
850 B
JavaScript
const userPref = window.matchMedia("(prefers-color-scheme: light)").matches ? "light" : "dark";
|
|
const currentTheme = localStorage.getItem("theme") ?? userPref;
|
|
|
|
if (currentTheme) {
|
|
document.documentElement.setAttribute("saved-theme", currentTheme);
|
|
}
|
|
|
|
const switchTheme = (e) => {
|
|
if (e.target.checked) {
|
|
document.documentElement.setAttribute("saved-theme", "dark");
|
|
localStorage.setItem("theme", "dark");
|
|
} else {
|
|
document.documentElement.setAttribute("saved-theme", "light");
|
|
localStorage.setItem("theme", "light");
|
|
}
|
|
};
|
|
|
|
window.addEventListener("DOMContentLoaded", () => {
|
|
// Darkmode toggle
|
|
const toggleSwitch = document.querySelector("#darkmode-toggle");
|
|
|
|
// listen for toggle
|
|
toggleSwitch.addEventListener("change", switchTheme, false);
|
|
|
|
if (currentTheme === "dark") {
|
|
toggleSwitch.checked = true;
|
|
}
|
|
});
|