a full ANSI color library is not required yet

This commit is contained in:
Ryan Cavicchioni 2020-03-24 09:14:22 -05:00
parent 25172da555
commit 4420c20933
Signed by: ryanc
GPG Key ID: 877EEDAF9245103D

View File

@ -6,8 +6,6 @@ import (
"os" "os"
"strconv" "strconv"
"time" "time"
fc "github.com/fatih/color"
) )
import ( import (
@ -221,10 +219,10 @@ func PrintLights(lights []lifx.Light) {
} }
func PowerColor(s string) string { func PowerColor(s string) string {
color := fc.New(fc.FgRed).SprintFunc() fs := "\033[1;31m%s\033[0m"
if s == "on" { if s == "on" {
color = fc.New(fc.FgGreen).SprintFunc() fs = "\033[1;32m%s\033[0m"
} }
return color(s) return fmt.Sprintf(fs, s)
} }