diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-21 14:55:38 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-21 14:55:38 +0800 |
commit | 1588984e7ef3e2a5ed0a45e048cd1f7331b7af9d (patch) | |
tree | 76dc83706b6b1ae7581f53f3b6fa57d99f08d5dc | |
parent | README: Remove old styling conventions (diff) | |
download | go-lindenii-common-1588984e7ef3e2a5ed0a45e048cd1f7331b7af9d.tar.gz go-lindenii-common-1588984e7ef3e2a5ed0a45e048cd1f7331b7af9d.tar.zst go-lindenii-common-1588984e7ef3e2a5ed0a45e048cd1f7331b7af9d.zip |
ansiec: Remove underscores
-rw-r--r-- | ansiec/colors.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ansiec/colors.go b/ansiec/colors.go index 370e6ec..28b3805 100644 --- a/ansiec/colors.go +++ b/ansiec/colors.go @@ -14,14 +14,14 @@ var ( ) var ( - Bright_Black = "\x1b[30;1m" - Bright_Red = "\x1b[31;1m" - Bright_Green = "\x1b[32;1m" - Bright_Yellow = "\x1b[33;1m" - Bright_Blue = "\x1b[34;1m" - Bright_Magenta = "\x1b[35;1m" - Bright_Cyan = "\x1b[36;1m" - Bright_White = "\x1b[37;1m" + BrightBlack = "\x1b[30;1m" + BrightRed = "\x1b[31;1m" + BrightGreen = "\x1b[32;1m" + BrightYellow = "\x1b[33;1m" + BrightBlue = "\x1b[34;1m" + BrightMagenta = "\x1b[35;1m" + BrightCyan = "\x1b[36;1m" + BrightWhite = "\x1b[37;1m" ) var ( |