More colors.

This commit is contained in:
Blallo 2019-05-17 18:03:54 +02:00
parent 4dc8e924e0
commit ae5736f21b
No known key found for this signature in database
GPG key ID: 0CBE577C9B72DC3F

View file

@ -75,3 +75,11 @@ var Green = color.New(color.FgGreen).SprintFunc()
// Cyan is a function that, given a string, returns the string
// in ANSI cyan foreground color.
var Cyan = color.New(color.FgCyan).SprintFunc()
// Yellow is a function that, given a string, returns the string
// in ANSI yellow foreground color.
var Yellow = color.New(color.FgYellow).SprintFunc()
// Gray is a function that, given a string, returns the string
// in ANSI gray foreground color.
var Gray = color.New(color.FgHiBlack).SprintFunc()