-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolorizeString.go
58 lines (50 loc) · 2.14 KB
/
colorizeString.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package golog
// The ANSI codes used to change the terminal color
const (
ansiCodeReset = "\033[0m"
ansiCodeRed = "\033[31m"
ansiCodeBoldRed = "\033[31;1m"
ansiCodeYellow = "\033[33m"
ansiCodeCyan = "\033[36m"
ansiCodeLightGrey = "\033[37m"
ansiCodeDarkGrey = "\033[90m"
)
// RedString will wrap the given string between the red and
// reset ANSI codes.
//
// Terminals with ANSI code support will print the string to
// the screen using red as the font color
func RedString(msg string) string { return colorizeString(msg, ansiCodeRed) }
// BoldRedString will wrap the given string between the bold
// red and reset ANSI codes.
//
// Terminals with ANSI code support will print the string to
// the screen using bold red as the font color
func BoldRedString(msg string) string { return colorizeString(msg, ansiCodeBoldRed) }
// YellowString will wrap the given string between the yellow
// and reset ANSI codes.
//
// Terminals with ANSI code support will print the string to
// the screen using yellow as the font color
func YellowString(msg string) string { return colorizeString(msg, ansiCodeYellow) }
// CyanString will wrap the given string between the cyan and
// reset ANSI codes.
//
// Terminals with ANSI code support will print the string to
// the screen using cyan as the font color
func CyanString(msg string) string { return colorizeString(msg, ansiCodeCyan) }
// LightGreyString will wrap the given string between the light
// grey and reset ANSI codes.
//
// Terminals with ANSI code support will print the string to
// the screen using light grey as the font color
func LightGreyString(msg string) string { return colorizeString(msg, ansiCodeLightGrey) }
// DarkGreyString will wrap the given string between the dark
// grey and reset ANSI codes.
//
// Terminals with ANSI code support will print the string to
// the screen using dark grey as the font color
func DarkGreyString(msg string) string { return colorizeString(msg, ansiCodeDarkGrey) }
// colorizeString will wrap the given string between the given
// color ANSI code and the reset ANSI code.
func colorizeString(msg, color string) string { return color + msg + ansiCodeReset }