aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--aero.js2
-rwxr-xr-xindex.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/aero.js b/aero.js
index da6cca7..5699dd7 100644
--- a/aero.js
+++ b/aero.js
@@ -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);
diff --git a/index.html b/index.html
index 8f26589..868bad5 100755
--- a/index.html
+++ b/index.html
@@ -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.