feat: set default theme to dark

This commit is contained in:
void-57 2025-12-05 14:36:18 +05:30
parent c96eb7cdea
commit ac92ea29e9

View File

@ -1611,7 +1611,7 @@
// Theme Management
function initializeTheme() {
const savedTheme = localStorage.getItem('theme') || 'light';
const savedTheme = localStorage.getItem('theme') || 'dark';
document.documentElement.setAttribute('data-theme', savedTheme);
updateThemeIcon(savedTheme);
}