9 lines
336 B
JavaScript
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');
|
|
}
|
|
})();
|