49 lines
1014 B
JavaScript
49 lines
1014 B
JavaScript
let toggleTheme = (theme) => {
|
|
if (theme == "dark") {
|
|
setTheme("light");
|
|
} else {
|
|
setTheme("dark");
|
|
}
|
|
}
|
|
|
|
|
|
let setTheme = (theme) => {
|
|
transTheme();
|
|
if (theme) {
|
|
document.documentElement.setAttribute("data-theme", theme);
|
|
}
|
|
else {
|
|
document.documentElement.removeAttribute("data-theme");
|
|
}
|
|
localStorage.setItem("theme", theme);
|
|
|
|
if (typeof medium_zoom !== 'undefined') {
|
|
medium_zoom.update({
|
|
background: getComputedStyle(document.documentElement)
|
|
.getPropertyValue('--global-bg-color') + 'ee',
|
|
})
|
|
}
|
|
};
|
|
|
|
|
|
let transTheme = () => {
|
|
document.documentElement.classList.add("transition");
|
|
window.setTimeout(() => {
|
|
document.documentElement.classList.remove("transition");
|
|
}, 500)
|
|
}
|
|
|
|
|
|
let initTheme = (theme) => {
|
|
if (theme == null) {
|
|
const userPref = window.matchMedia;
|
|
if (userPref && userPref('(prefers-color-scheme: dark)').matches) {
|
|
theme = 'dark';
|
|
}
|
|
}
|
|
setTheme(theme);
|
|
}
|
|
|
|
|
|
initTheme(localStorage.getItem("theme"));
|