From d17ab73dce225c40fc820658e5fe5fc8f7ff1f1d Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Mon, 29 Sep 2025 21:25:30 +1000 Subject: [PATCH] feat: Default to pink theme --- templates/schedule.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/schedule.html b/templates/schedule.html index 4b2e7bd..5fa5800 100644 --- a/templates/schedule.html +++ b/templates/schedule.html @@ -9,7 +9,7 @@ - +
@@ -18,11 +18,11 @@
Theme:
- - @@ -59,11 +59,11 @@
Theme:
- - @@ -76,8 +76,8 @@ const themeButtons = document.querySelectorAll('.theme-btn'); const body = document.body; - // Load saved theme or default to dark - const savedTheme = localStorage.getItem('theme') || 'dark'; + // Load saved theme or default to pink + const savedTheme = localStorage.getItem('theme') || 'pink'; body.setAttribute('data-theme', savedTheme); // Update active button for both switchers