From 1c10f7903625bcc5ec11e961c1bdde87408cfa3c Mon Sep 17 00:00:00 2001 From: fahed Date: Wed, 4 Mar 2026 17:39:46 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20dark=20mode=20card=20contrast=20?= =?UTF-8?q?=E2=80=94=20elevate=20bg-white=20above=20surface-secondary?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cards (bg-white → #22223a) now sit visibly above kanban columns and section backgrounds (surface-secondary → #1c1c2a). Co-Authored-By: Claude Opus 4.6 --- client/src/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/index.css b/client/src/index.css index b1c7856..246e958 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -85,11 +85,11 @@ z-index: 0; } -/* ─── Every white surface → dark ─────────────── */ +/* ─── Every white surface → elevated dark ────── */ .dark .bg-white, .dark .bg-\[\#fff\], .dark .bg-\[\#ffffff\] { - background-color: #1c1c2a !important; + background-color: #22223a !important; } .dark .bg-gray-50 { background-color: #15151e !important; } .dark .bg-gray-100 { background-color: #1c1c2a !important; }