From 77afdeb3949142de7f48c4584f9a815622980276 Mon Sep 17 00:00:00 2001 From: Yash Handa Date: Mon, 28 Dec 2020 19:15:07 +0530 Subject: [PATCH] removed reference of white --- internal/ctw/utils.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/ctw/utils.go b/internal/ctw/utils.go index 30540fa..8cd236d 100644 --- a/internal/ctw/utils.go +++ b/internal/ctw/utils.go @@ -4,7 +4,6 @@ import "strings" var ( noColor string = "\033[0m" - white string = "\033[38;2;255;255;255m" // not used anymore green string = "\033[38;2;055;183;021m" brown string = "\033[38;2;192;154;107m" brailEmpty string = "\u2800" @@ -12,7 +11,7 @@ var ( func DisplayColor(b bool) { if b == false { - white = "" + noColor = "" green = "" brown = "" }