fix(tui): build and bg color

This commit is contained in:
adamdotdevin
2025-07-14 09:14:02 -05:00
parent 229a280652
commit a53d2ea356
2 changed files with 4 additions and 6 deletions

View File

@@ -30,7 +30,7 @@ func (cg *filesContextGroup) GetEmptyMessage() string {
func (cg *filesContextGroup) getGitFiles() []dialog.CompletionItemI {
t := theme.CurrentTheme()
items := make([]dialog.CompletionItemI, 0)
base := styles.NewStyle().Background(t.BackgroundElement())
base := styles.NewStyle().Background(t.BackgroundPanel())
green := base.Foreground(t.Success()).Render
red := base.Foreground(t.Error()).Render