From 65051c9c1fb5fcbeef0caff1458963cd3156a5df Mon Sep 17 00:00:00 2001 From: Gigi Date: Tue, 14 Oct 2025 09:25:13 +0200 Subject: [PATCH] fix(theme): apply theme colors to body element - Add background and text color to body - Ensures page background changes with theme --- src/styles/base/global.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/styles/base/global.css b/src/styles/base/global.css index f394f898..d80917ed 100644 --- a/src/styles/base/global.css +++ b/src/styles/base/global.css @@ -2,6 +2,8 @@ /* Body - keep only app-specific overrides */ body { + background: var(--color-bg); + color: var(--color-text); overscroll-behavior: none; -webkit-overflow-scrolling: touch; overflow-x: hidden;