Files

11 lines
228 B
JavaScript
Raw Permalink Normal View History

(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) {}
})();