From a0ccaaa4bcce3c96cc8787af2c9cab072668ce34 Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Fri, 13 Mar 2026 20:18:48 +0800 Subject: [PATCH] Reduce weekend frame tint: 10% was too aggressive, use 9% lightness MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hsl(0 0% 10% / 0.65) was visibly too bright vs weekday hsl(0 0% 8% / 0.65) in Firefox. Reduced to hsl(0 0% 9% / 0.65) — 1% bump, subtle but present. Co-Authored-By: Claude Opus 4.6 --- frontend/src/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/index.css b/frontend/src/index.css index d9d1d76..e2ff451 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -170,7 +170,7 @@ the tint must target the frame itself, not the td. */ .fc .fc-day-sat .fc-daygrid-day-frame, .fc .fc-day-sun .fc-daygrid-day-frame { - background-color: hsl(0 0% 10% / 0.65) !important; + background-color: hsl(0 0% 9% / 0.65) !important; }