From bc43a9051091afa8e3ab7cf78e58162f11f197fd Mon Sep 17 00:00:00 2001 From: Jezza Hehn Date: Fri, 10 Apr 2026 02:09:36 +0000 Subject: [PATCH] Fix light mode hero - swap dark navy for light grey gradient --- css/style.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/css/style.css b/css/style.css index 7b851bb..793025c 100644 --- a/css/style.css +++ b/css/style.css @@ -55,7 +55,20 @@ /* ====== LIGHT THEME ====== */ [data-theme="light"] .hero.is-kp { - background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); + background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%); +} + +[data-theme="light"] .hero.is-kp .title.has-text-white { + color: #1a1a1a !important; +} + +[data-theme="light"] .hero.is-kp .subtitle.has-text-light { + color: #333 !important; +} + +[data-theme="light"] .hero.is-kp .button.is-outlined.is-light { + border-color: #1a1a1a; + color: #1a1a1a; } [data-theme="light"] {