From 584d974f07c9af22235f7cd07ca7ebbe16b535ce Mon Sep 17 00:00:00 2001 From: kumarabhirup Date: Sat, 14 Mar 2026 22:26:40 -0700 Subject: [PATCH] style: increase sidebar vs chat panel background contrast MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Darken --color-sidebar-bg to create more visual hierarchy between the sidebar and main content area, inspired by animclaw's approach. Light: #f5f5f4 → #ebebea (delta 15 from main-bg, was 5) Dark: #141413 → #0c0c0b (delta 10 from main-bg, was 2) --- apps/web/app/globals.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/app/globals.css b/apps/web/app/globals.css index e8a349e8926..bb2478f3c20 100644 --- a/apps/web/app/globals.css +++ b/apps/web/app/globals.css @@ -12,7 +12,7 @@ /* Background / Surface */ --color-bg: #f5f5f4; --color-surface: #ffffff; - --color-sidebar-bg: #f5f5f4; + --color-sidebar-bg: #ebebea; --color-main-bg: #fafaf9; --color-surface-hover: #ececea; --color-surface-raised: #ffffff; @@ -102,7 +102,7 @@ /* Background / Surface */ --color-bg: #0c0c0b; --color-surface: #161615; - --color-sidebar-bg: #141413; + --color-sidebar-bg: #0c0c0b; --color-main-bg: #161615; --color-surface-hover: #1e1e1c; --color-surface-raised: #1a1a18;