Spaces:
Sleeping
Sleeping
File size: 217 Bytes
58c1398 | 1 2 3 4 5 6 7 8 | // Theme initialization to prevent flash
(function() {
const savedTheme = localStorage.getItem('theme');
if (savedTheme !== 'light') {
document.documentElement.classList.add('dark-theme');
}
})();
|