Files
radio-otherway/web/public/theme.js
Fergal Moran 5f847732a4 Added files
2023-03-02 06:27:17 +00:00

5 lines
158 B
JavaScript

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