From a50e4e53eab4052496d9d2bbdb66f20593afd03b Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Thu, 11 Dec 2025 21:55:50 +0100 Subject: [PATCH] chore: small theme changes --- internal/tui/components/dialogs/ghdash/ghdash.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/internal/tui/components/dialogs/ghdash/ghdash.go b/internal/tui/components/dialogs/ghdash/ghdash.go index 7bc87a338dd458d07efe07cc1f3a7eb026f3736f..20066acf01813d01b18d52b20781f3e1e3bf657d 100644 --- a/internal/tui/components/dialogs/ghdash/ghdash.go +++ b/internal/tui/components/dialogs/ghdash/ghdash.go @@ -61,6 +61,7 @@ func createThemedConfig() string { faint: "%s" warning: "%s" success: "%s" + error: "%s" background: selected: "%s" border: @@ -70,13 +71,14 @@ func createThemedConfig() string { `, colorToHex(t.FgBase), colorToHex(t.FgMuted), - colorToHex(t.BgBase), - colorToHex(t.FgHalfMuted), + colorToHex(t.FgSelected), + colorToHex(t.FgSubtle), colorToHex(t.Warning), colorToHex(t.Success), + colorToHex(t.Error), colorToHex(t.Primary), colorToHex(t.BorderFocus), - colorToHex(t.Border), + colorToHex(t.FgMuted), colorToHex(t.BgSubtle), )