From a5d2aacdf6e7012c98ace15004210d637ec98608 Mon Sep 17 00:00:00 2001 From: lm Date: Fri, 17 Oct 2025 16:07:35 +0200 Subject: [PATCH] Light theme background to pure white --- app/gui/theme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/gui/theme.py b/app/gui/theme.py index 61cbb8f..58b622e 100644 --- a/app/gui/theme.py +++ b/app/gui/theme.py @@ -38,7 +38,7 @@ class ThemeMixin: status_fg = "#f5f5f5" highlight_fg = "#f2c744" else: - bg, fg = "#ededf2", "#202020" + bg, fg = "#ffffff", "#202020" status_fg = "#1c1c1c" highlight_fg = "#c56217" self.root.configure(bg=bg) # type: ignore[attr-defined]