Files
annu-kute-ced/static/theme.js
T

11 lines
228 B
JavaScript
Raw 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) {}
})();