From 4c4c1dd00cc8d064f0f7598326fa9b976214d669 Mon Sep 17 00:00:00 2001 From: Tom Fleet Date: Fri, 5 Jul 2024 18:45:15 +0100 Subject: [PATCH] Change text color from FgHiWhite to White (#74) --- msg.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/msg.go b/msg.go index 43038b8..5c7c0aa 100644 --- a/msg.go +++ b/msg.go @@ -51,7 +51,7 @@ func Success(format string, a ...any) { // msg.Fsuccess(os.Stdout, "Compiled project: %s", "msg") func Fsuccess(w io.Writer, format string, a ...any) { success := color.New(colorSuccess, color.Bold) - message := color.New(color.FgHiWhite) + message := color.New(color.FgWhite) fmt.Fprintf(w, "%s: %s\n", success.Sprint(statusSuccess), message.Sprintf(format, a...)) } @@ -73,7 +73,7 @@ func Error(format string, a ...any) { // msg.Ferror(os.Stderr, "Uh oh! %s", "something wrong") func Ferror(w io.Writer, format string, a ...any) { e := color.New(colorError, color.Bold) - message := color.New(color.FgHiWhite) + message := color.New(color.FgWhite) fmt.Fprintf(w, "%s: %s\n", e.Sprint(statusError), message.Sprintf(format, a...)) } @@ -94,7 +94,7 @@ func Warn(format string, a ...any) { // msg.Fwarn(os.Stderr, "hmmmm: %v", true) func Fwarn(w io.Writer, format string, a ...any) { warn := color.New(colorWarn, color.Bold) - message := color.New(color.FgHiWhite) + message := color.New(color.FgWhite) fmt.Fprintf(w, "%s: %s\n", warn.Sprint(statusWarn), message.Sprintf(format, a...)) } @@ -115,7 +115,7 @@ func Info(format string, a ...any) { // msg.Finfo(os.Stdout, "The meaning of life is %v", 42) func Finfo(w io.Writer, format string, a ...any) { info := color.New(colorInfo, color.Bold) - message := color.New(color.FgHiWhite) + message := color.New(color.FgWhite) fmt.Fprintf(w, "%s: %s\n", info.Sprint(statusInfo), message.Sprintf(format, a...)) }