From 2a422fbeb9c2e8f1350af86893cc141eed34b3c4 Mon Sep 17 00:00:00 2001 From: Gigi Date: Tue, 14 Oct 2025 10:05:10 +0200 Subject: [PATCH] fix(theme): use darker background for app body - Change body background from --color-bg to --color-bg-subtle - Creates visual depth and hierarchy between app bg and content - Content panels now stand out more against the background --- src/styles/base/global.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/base/global.css b/src/styles/base/global.css index d80917ed..359575d5 100644 --- a/src/styles/base/global.css +++ b/src/styles/base/global.css @@ -2,7 +2,7 @@ /* Body - keep only app-specific overrides */ body { - background: var(--color-bg); + background: var(--color-bg-subtle); color: var(--color-text); overscroll-behavior: none; -webkit-overflow-scrolling: touch;