From 97a77a440158532a32241d8c3e5959e957d2808a Mon Sep 17 00:00:00 2001 From: Veselkov Konstantin Date: Tue, 15 May 2018 10:18:55 +0400 Subject: [PATCH] Update color.go --- color.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/color.go b/color.go index 5c0dcc8..88090da 100644 --- a/color.go +++ b/color.go @@ -7,7 +7,7 @@ type Color struct{} var c Color func (c Color) DarkGray(t string) { - fmt.Print("\x1b[30;1m") //red + fmt.Print("\x1b[30;1m") //darkGray fmt.Println(t) fmt.Print("\x1b[0m") //defaultColor } @@ -25,7 +25,7 @@ func (c Color) Green(t string) { } func (c Color) Yellow(t string) { - fmt.Print("\x1b[33;1m") //green + fmt.Print("\x1b[33;1m") //yellow fmt.Println(t) fmt.Print("\x1b[0m") //defaultColor }