From f49a13b80e3570ba3dd01afafaeec995a8d3e382 Mon Sep 17 00:00:00 2001 From: lm Date: Fri, 17 Oct 2025 14:07:23 +0200 Subject: [PATCH] Tint navigation arrows to match theme --- app/gui/ui.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/gui/ui.py b/app/gui/ui.py index c8c9692..9529b29 100644 --- a/app/gui/ui.py +++ b/app/gui/ui.py @@ -328,6 +328,7 @@ class UIBuilderMixin: def _create_navigation_button(self, container, symbol: str, command, *, column: int) -> None: bg = self.root.cget("bg") if hasattr(self.root, "cget") else "#f2f2f7" container.grid_rowconfigure(0, weight=1) + fg = "#f5f5f5" if getattr(self, "theme", "light") == "dark" else "#1f1f1f" btn = tk.Button( container, text=symbol, @@ -338,6 +339,8 @@ class UIBuilderMixin: background=bg, activebackground=bg, highlightthickness=0, + fg=fg, + activeforeground=fg, cursor="hand2", width=2, )