website-htmx-rustelo-code/site/public/js/theme-init.min.js
2026-07-10 03:44:13 +01:00

1 line
No EOL
435 B
JavaScript

(function(){const getThemeFromCookie=()=>{const matches=document.cookie.match(/theme=([^;]+)/);return matches ? matches[1] : null;};const theme=getThemeFromCookie()||'dark';const html=document.documentElement;if(theme==='dark'||(theme==='system'&&window.matchMedia('(prefers-color-scheme: dark)').matches)){html.classList.add('dark');html.classList.remove('light');}else{html.classList.add('light');html.classList.remove('dark');}})();