index.js 222 B

1234567891011
  1. function applyTheme()
  2. {
  3. const theme = Cookies.get("theme_pref") || "light";
  4. if(theme)
  5. document.body.dataset.theme = theme;
  6. }
  7. document.addEventListener("DOMContentLoaded", () => {
  8. // applyTheme();
  9. });