From c11640be2322c2051e8301728f9fc7d91963160c Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Sun, 29 Jun 2025 16:08:58 -0600 Subject: [PATCH] switch to hiblack for unix as well --- listen.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listen.go b/listen.go index 3308d25..1fa94ec 100644 --- a/listen.go +++ b/listen.go @@ -33,7 +33,7 @@ func printStatus(msg string) { if runtime.GOOS == "windows" { fmt.Fprintf(color.Output, "%s", color.HiBlackString(msg)) } else { - c := color.New(color.FgWhite) + c := color.New(color.FgHiBlack) c.Fprintf(os.Stderr, "%s", msg) } }