mirror of
https://github.com/fergalmoran/radio-otherway.git
synced 2025-12-22 01:39:05 +00:00
5 lines
158 B
JavaScript
5 lines
158 B
JavaScript
(function initTheme() {
|
|
var theme = localStorage.getItem("theme") || "synthwave";
|
|
document.querySelector("html").setAttribute("data-theme", theme);
|
|
})();
|