From ca9b4d5a49d488a32c2f8a76d9c4fab479d2746d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 15 Sep 2025 09:40:49 +0900 Subject: [PATCH] Use white foreground color --- src/tui/tui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui/tui.go b/src/tui/tui.go index 98a5b576..6ab2468e 100644 --- a/src/tui/tui.go +++ b/src/tui/tui.go @@ -926,7 +926,7 @@ func init() { DarkBg: ColorAttr{colBlack, AttrUndefined}, Prompt: ColorAttr{colBlue, AttrUndefined}, Match: ColorAttr{colGreen, AttrUndefined}, - Current: ColorAttr{colDefault, AttrUndefined}, + Current: ColorAttr{colWhite, AttrUndefined}, CurrentMatch: ColorAttr{colGreen, AttrUndefined}, Spinner: ColorAttr{colGreen, AttrUndefined}, Info: ColorAttr{colYellow, AttrUndefined},