diff options
| -rw-r--r-- | aero.js | 2 | ||||
| -rwxr-xr-x | index.html | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -197,7 +197,7 @@ function musicToggleHTML() { // THEME SWITCHER — Aero (Frutiger) ↔ Chrome (Y2K) const THEME_KEY = 'tyler.theme'; -const THEMES = ['aero', 'chrome']; +const THEMES = ['chrome', 'aero']; function getTheme() { const t = localStorage.getItem(THEME_KEY); @@ -10,7 +10,7 @@ <link rel="stylesheet" href="index.css" /> </head> <body> - <script>(function(){var t=localStorage.getItem('tyler.theme')||'aero';document.body.setAttribute('data-theme',t);})();</script> + <script>(function(){var t=localStorage.getItem('tyler.theme')||'chrome';document.body.setAttribute('data-theme',t);})();</script> <script> // Scale the whole desktop to fit smaller monitors. Layout is designed around // ~1440x900; below that, windows overlap and icons run off the bottom edge. |
