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), )