mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 02:02:14 +00:00
19 lines
641 B
Bash
19 lines
641 B
Bash
|
# Color codes prefixed with F_ (for "font") to disambiguate
|
||
|
F_RESET=$(echo -en '\033[0m')
|
||
|
F_RED=$(echo -en '\033[00;31m')
|
||
|
F_GREEN=$(echo -en '\033[00;32m')
|
||
|
F_YELLOW=$(echo -en '\033[00;33m')
|
||
|
F_BLUE=$(echo -en '\033[00;34m')
|
||
|
F_MAGENTA=$(echo -en '\033[00;35m')
|
||
|
F_PURPLE=$(echo -en '\033[00;35m')
|
||
|
F_CYAN=$(echo -en '\033[00;36m')
|
||
|
F_LGRAY=$(echo -en '\033[00;37m')
|
||
|
F_LRED=$(echo -en '\033[01;31m')
|
||
|
F_LGREEN=$(echo -en '\033[01;32m')
|
||
|
F_LYELLOW=$(echo -en '\033[01;33m')
|
||
|
F_LBLUE=$(echo -en '\033[01;34m')
|
||
|
F_LMAGENTA=$(echo -en '\033[01;35m')
|
||
|
F_LPURPLE=$(echo -en '\033[01;35m')
|
||
|
F_LCYAN=$(echo -en '\033[01;36m')
|
||
|
F_WHITE=$(echo -en '\033[01;37m')
|