WebsiteTemplate/assets/js/theme-init.js
2026-01-25 11:33:37 -04:00

8 lines
290 B
JavaScript

// Apply theme immediately to prevent flash
(function() {
const theme = localStorage.getItem('theme') ||
(window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
document.documentElement.setAttribute('data-theme', theme);
})();