Files
sitegeist-local/theme-loader.js
T
2026-03-17 11:10:09 -06:00

9 lines
336 B
JavaScript

// Apply theme immediately to prevent white flash
// This runs before any other scripts or CSS
(function() {
const theme = localStorage.getItem('theme') || 'system';
if (theme === 'dark' || (theme === 'system' && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark');
}
})();