Răsfoiți Sursa

fix(tui): fix logo color

adamdotdevin 6 luni în urmă
părinte
comite
f1684c9e15
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      packages/tui/internal/tui/tui.go

+ 1 - 1
packages/tui/internal/tui/tui.go

@@ -915,7 +915,7 @@ func (a Model) Cleanup() {
 func (a Model) home() (string, int, int) {
 	t := theme.CurrentTheme()
 	effectiveWidth := a.width - 4
-	baseStyle := styles.NewStyle().Background(t.Background())
+	baseStyle := styles.NewStyle().Foreground(t.Text()).Background(t.Background())
 	base := baseStyle.Render
 	muted := styles.NewStyle().Foreground(t.TextMuted()).Background(t.Background()).Render