From f0f5e08c468fa36d010001afee6e55534a718ed8 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sun, 4 Jan 2026 20:40:39 +0100 Subject: [PATCH] chore: match HTML background to Flutter dark theme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed from #1a1a2e to #111111 to match FlexScheme.aquaBlue scaffold background. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- web/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/index.html b/web/index.html index d41b389..7221c2b 100644 --- a/web/index.html +++ b/web/index.html @@ -36,7 +36,8 @@ body { margin: 0; padding: 0; - background-color: #1a1a2e; + /* Match Flutter's dark theme scaffold background (FlexScheme.aquaBlue) */ + background-color: #111111; }