forked from ORGANISATION-KA-INTERNATIONALE/FEDIVERSE-OKI
11 lines
228 B
JavaScript
11 lines
228 B
JavaScript
|
|
(function () {
|
||
|
|
var root = document.documentElement;
|
||
|
|
root.classList.add('js');
|
||
|
|
try {
|
||
|
|
var theme = localStorage.getItem('kute-theme');
|
||
|
|
if (theme === 'light') {
|
||
|
|
root.classList.add('light-theme');
|
||
|
|
}
|
||
|
|
} catch (e) {}
|
||
|
|
})();
|