You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
regolancer/colors.go

14 lines
550 B
Go

package main
import "github.com/fatih/color"
var (
faintWhiteColor = color.New(color.FgWhite, color.Faint).SprintFunc()
hiWhiteColor = color.New(color.FgHiWhite, color.Bold).SprintFunc()
hiWhiteColorF = color.New(color.FgHiWhite, color.Bold).SprintfFunc()
cyanColor = color.New(color.FgBlue, color.Bold).SprintFunc()
errColor = color.New(color.FgHiRed, color.Bold).SprintFunc()
infoColor = color.New(color.FgHiYellow, color.Bold).SprintFunc()
infoColorF = color.New(color.FgHiYellow, color.Bold).SprintfFunc()
)