You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
#!/usr/bin/env sh |
|
|
|
# This magical knowledge serves as a colorful palette of hues and shades, |
|
# granting control over the appearance of the terminal. |
|
# Use these variables to add a splash of color to your scripts. |
|
|
|
# Reset all attributes to their default values |
|
RESET="\033[0m" |
|
|
|
# Colors |
|
BLACK="\033[30m" |
|
RED="\033[31m" |
|
GREEN="\033[32m" |
|
YELLOW="\033[33m" |
|
BLUE="\033[34m" |
|
MAGENTA="\033[35m" |
|
CYAN="\033[36m" |
|
WHITE="\033[37m" |
|
|
|
# Bright colors |
|
BRIGHT_BLACK="\033[30;1m" |
|
BRIGHT_RED="\033[31;1m" |
|
BRIGHT_GREEN="\033[32;1m" |
|
BRIGHT_YELLOW="\033[33;1m" |
|
BRIGHT_BLUE="\033[34;1m" |
|
BRIGHT_MAGENTA="\033[35;1m" |
|
BRIGHT_CYAN="\033[36;1m" |
|
BRIGHT_WHITE="\033[37;1m" |
|
|
|
# Background colors |
|
BG_BLACK="\033[40m" |
|
BG_RED="\033[41m" |
|
BG_GREEN="\033[42m" |
|
BG_YELLOW="\033[43m" |
|
BG_BLUE="\033[44m" |
|
BG_MAGENTA="\033[45m" |
|
BG_CYAN="\033[46m" |
|
BG_WHITE="\033[47m" |
|
|
|
# Bright background colors |
|
BG_BRIGHT_BLACK="\033[40;1m" |
|
BG_BRIGHT_RED="\033[41;1m" |
|
BG_BRIGHT_GREEN="\033[42;1m" |
|
BG_BRIGHT_YELLOW="\033[103m" |
|
BG_BRIGHT_BLUE="\033[104m" |
|
BG_BRIGHT_MAGENTA="\033[105m" |
|
BG_BRIGHT_CYAN="\033[106m" |
|
BG_BRIGHT_WHITE="\033[107m"
|
|
|