Created
July 23, 2022 16:42
-
-
Save DIY0R/51b5cc222ab50534a4282e27ae63407a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Reset = "\x1b[0m%s\x1b[0m" | |
Bright = "\x1b[1m%s\x1b[0m" | |
Dim = "\x1b[2m%s\x1b[0m" | |
Underscore = "\x1b[4m%s\x1b[0m" | |
Blink = "\x1b[5m%s\x1b[0m" | |
Reverse = "\x1b[7m%s\x1b[0m" | |
Hidden = "\x1b[8m%s\x1b[0m" | |
FgBlack = "\x1b[30m%s\x1b[0m" | |
FgRed = "\x1b[31m%s\x1b[0m" | |
FgGreen = "\x1b[32m%s\x1b[0m" | |
FgYellow = "\x1b[33m%s\x1b[0m" | |
FgBlue = "\x1b[34m%s\x1b[0m" | |
FgMagenta = "\x1b[35m%s\x1b[0m" | |
FgCyan = "\x1b[36m%s\x1b[0m" | |
FgWhite = "\x1b[37m%s\x1b[0m" | |
BgBlack = "\x1b[40m%s\x1b[0m" | |
BgRed = "\x1b[41m%s\x1b[0m" | |
BgGreen = "\x1b[42m%s\x1b[0m" | |
BgYellow = "\x1b[43m%s\x1b[0m" | |
BgBlue = "\x1b[44m%s\x1b[0m" | |
BgMagenta = "\x1b[45m%s\x1b[0m" | |
BgCyan = "\x1b[46m%s\x1b[0m" | |
BgWhite = "\x1b[47m%s\x1b[0m" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment