From 947c12bfe185fe8c1a920f71114cda1be1e36d37 Mon Sep 17 00:00:00 2001 From: Louis King Date: Tue, 10 Feb 2026 18:23:46 +0000 Subject: [PATCH] Fix hero title to use black/white per theme --- src/meshcore_hub/web/static/css/app.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/meshcore_hub/web/static/css/app.css b/src/meshcore_hub/web/static/css/app.css index 8ff1f31..8f6b6e3 100644 --- a/src/meshcore_hub/web/static/css/app.css +++ b/src/meshcore_hub/web/static/css/app.css @@ -49,9 +49,12 @@ filter: brightness(0.15); } -/* Soften hero heading to dark grey in light mode */ +/* Ensure hero heading is pure black/white per theme */ +.hero-title { + color: #fff; +} [data-theme="light"] .hero-title { - color: #6b7280; + color: #000; } /* Nav icon colors */