switch to hiblack for unix as well

This commit is contained in:
Bryson Steck 2025-06-29 16:08:58 -06:00
parent afa368f552
commit c11640be23
Signed by: bryson
SSH key fingerprint: SHA256:XpKABw/nP4z8UVaH+weLaBnEOD86+cVwif+QjuYLGT4

View file

@ -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)
}
}