From e011b2a36a65b1bd2f909c7fc128311383a27c71 Mon Sep 17 00:00:00 2001 From: Toby Padilla Date: Fri, 13 Aug 2021 11:09:16 -0500 Subject: [PATCH] Force ANSI256 color --- tui/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui/commands.go b/tui/commands.go index f9abbcec2..0cfaa03ef 100644 --- a/tui/commands.go +++ b/tui/commands.go @@ -25,7 +25,7 @@ func (b *Bubble) windowChangesCmd() tea.Msg { } func (b *Bubble) setupCmd() tea.Msg { - lipgloss.SetColorProfile(termenv.TrueColor) + lipgloss.SetColorProfile(termenv.ANSI256) b.repos = b.repoSource.AllRepos() mes := make([]MenuEntry, 0) rs := make([]string, 0)