From 5b10d5fe491a885665e6607c266ab93484033425 Mon Sep 17 00:00:00 2001 From: Jon Date: Sat, 13 Jun 2026 20:01:49 +0100 Subject: [PATCH] Fix white button text colour in dark mode btn-white appears inside section-dark sections which stay dark; pin its text to #0A0A0A so it doesn't inherit the flipped --ink token. Co-Authored-By: Claude Sonnet 4.6 --- style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/style.css b/style.css index 6291d13..51f5e55 100644 --- a/style.css +++ b/style.css @@ -1073,6 +1073,8 @@ html.dark .btn-outline { html.dark .btn-outline:hover { border-color: #F0F0ED; } +html.dark .btn-white { color: #0A0A0A; } + html.dark .industry-cell { background: #0F0F0E; } html.dark .section-off .industry-cell { background: #161615; }