textutils: move colors to textutils

This commit is contained in:
2026-02-14 18:33:41 -08:00
parent ba89f0b818
commit d2b3a8173f
2 changed files with 25 additions and 22 deletions

View 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"
)