From d310d101ed1107689b70d4adc0f599291b046f25 Mon Sep 17 00:00:00 2001 From: Gronod Date: Tue, 19 May 2026 22:59:16 +0100 Subject: [PATCH] Fix undefined --background CSS variable causing blank status panel --- public/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/style.css b/public/style.css index 1a7f5a6..4b4b652 100644 --- a/public/style.css +++ b/public/style.css @@ -36,6 +36,7 @@ --bg-gradient-end: #d4dee8; /* Surfaces */ + --background: #f5f7f9; --surface: #ffffff; --surface-alt: #f0f4f7; @@ -98,6 +99,7 @@ [data-theme="dark"] { --bg-gradient-start: #1a1a2e; --bg-gradient-end: #16213e; + --background: #161622; --surface: #1e1e2f; --surface-alt: #2a2a3d; --text-primary: #e0e0e0; @@ -136,6 +138,7 @@ [data-theme="mono"] { --bg-gradient-start: #222222; --bg-gradient-end: #333333; + --background: #141414; --surface: #1a1a1a; --surface-alt: #252525; --text-primary: #d0d0d0;