textutils: move colors to textutils
This commit is contained in:
15
pkg/textutils/terminal_colors.go
Normal file
15
pkg/textutils/terminal_colors.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package textutils
|
||||
|
||||
// Colors for terminal output
|
||||
const (
|
||||
ColorReset = "\033[0m"
|
||||
ColorBlack = "\033[30m"
|
||||
ColorRed = "\033[31m"
|
||||
ColorGreen = "\033[32m"
|
||||
ColorYellow = "\033[33m"
|
||||
ColorBlue = "\033[34m"
|
||||
ColorPurple = "\033[35m"
|
||||
ColorCyan = "\033[36m"
|
||||
ColorGray = "\033[37m"
|
||||
ColorWhite = "\033[97m"
|
||||
)
|
||||
Reference in New Issue
Block a user