From f69ada632a46d3ff1f8160cc9c81359239f26e7b Mon Sep 17 00:00:00 2001 From: Nicolas De Loof Date: Wed, 29 Apr 2020 15:35:34 +0200 Subject: [PATCH] use faint for "in progress" to distingish completed/failed Signed-off-by: Nicolas De Loof --- ecs/pkg/console/progress.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecs/pkg/console/progress.go b/ecs/pkg/console/progress.go index 157ee813..6943dd8a 100644 --- a/ecs/pkg/console/progress.go +++ b/ecs/pkg/console/progress.go @@ -32,7 +32,7 @@ func NewProgressWriter() ProgressWriter { } const ( - cyan = "36;1" + blue = "36;2" red = "31;1" green = "32;1" ) @@ -126,7 +126,7 @@ func (c ansiConsole) KO(s string) string { } func (c ansiConsole) WiP(s string) string { - return ansiColor(cyan, s) + return ansiColor(blue, s) } func ansiColor(code, s string) string {