mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2026-01-03 19:44:55 +01:00
11 lines
330 B
JavaScript
11 lines
330 B
JavaScript
try {
|
|
console.log("Setting theme");
|
|
const theme = JSON.parse(localStorage.getItem("homebox/preferences/location")).theme;
|
|
if (theme) {
|
|
document.documentElement.setAttribute("data-theme", theme);
|
|
document.documentElement.classList.add("theme-" + theme);
|
|
}
|
|
} catch (e) {
|
|
console.error("Failed to set theme", e);
|
|
}
|