Force ANSI256 color

Toby Padilla created

Change summary

tui/commands.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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)