diff --git a/static/js/color-theme.js b/static/js/color-theme.js index f6fb03b..3e200cc 100644 --- a/static/js/color-theme.js +++ b/static/js/color-theme.js @@ -53,8 +53,8 @@ function initColorTheme() { localStorage.setItem('color-theme-mode', existingTheme); setColorTheme(existingTheme); } else { - // Fallback: Get saved preference or default to 'auto' - const savedTheme = localStorage.getItem('color-theme-mode') || 'auto'; + // Fallback: Get saved preference or default to 'light' (paper aesthetic) + const savedTheme = localStorage.getItem('color-theme-mode') || 'light'; setColorTheme(savedTheme); } } @@ -65,7 +65,7 @@ function setupColorThemeButton() { if (button) { button.addEventListener('click', () => { // Get current theme - const currentTheme = localStorage.getItem('color-theme-mode') || 'auto'; + const currentTheme = localStorage.getItem('color-theme-mode') || 'light'; // Cycle: auto → light → dark → auto if (currentTheme === 'auto') { diff --git a/templates/index.html b/templates/index.html index 6e4080f..6a16e0a 100644 --- a/templates/index.html +++ b/templates/index.html @@ -71,17 +71,9 @@