mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2026-01-02 19:17:26 +01:00
10 lines
266 B
JavaScript
10 lines
266 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);
|
|
} catch (e) {
|
|
console.error('Failed to set theme', e);
|
|
}
|