Files
radio-otherway/public/theme.js
2023-03-01 13:21:20 +00:00

5 lines
158 B
JavaScript

(function initTheme() {
var theme = localStorage.getItem("theme") || "synthwave";
document.querySelector("html").setAttribute("data-theme", theme);
})();