Yet another Go logging library for user-friendly applications, with colors!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
462 B

6 years ago
package ansi
// Names and escape codes for the standard ANSI colors.
const (
Black = `30`
BrightBlack = `30;1`
Red = `31`
BrightRed = `31;1`
Green = `32`
BrightGreen = `32;1`
Yellow = `33`
BrightYellow = `33;1`
Blue = `34`
BrightBlue = `34;1`
Magenta = `35`
BrightMagenta = `35;1`
Cyan = `36`
BrightCyan = `36;1`
White = `37`
BrightWhite = `37;1`
Reset = `0`
)