From e433796bc640bb23cf33b1c879a7570cfb82f3a9 Mon Sep 17 00:00:00 2001 From: Emil Date: Mon, 21 Sep 2026 04:57:33 +0300 Subject: [PATCH] Dark theme: the closing band is a dark slab instead of a light one Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01XtcZtnG4GQA1d6mW5PNrS9 --- app/globals.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/globals.css b/app/globals.css index 4012b92..fb85329 100644 --- a/app/globals.css +++ b/app/globals.css @@ -98,9 +98,9 @@ --cube-edge: rgba(0, 0, 0, 0.4); --cover-grid: rgba(255, 255, 255, 0.09); - --band-bg: #e8ebef; - --band-ink: #15181d; - + /* The closing band: on a dark page it is a darker slab, not a light one (a light band dazzles at night). */ + --band-bg: #101317; + --band-ink: #e9edf2; } * { box-sizing: border-box; }