Files
2026-06-13 18:33:22 +09:00

9 lines
270 B
JavaScript

(function () {
try {
var m = document.cookie.match(/(?:^|; )theme=([^;]+)/);
var t = m ? decodeURIComponent(m[1]) : "light";
if (t !== "dark" && t !== "light") t = "light";
document.documentElement.setAttribute("data-theme", t);
} catch (_) {}
})();