mirror of
https://github.com/HerrCraziDev/dotfiles.git
synced 2025-12-13 09:36:16 +01:00
46 lines
1002 B
Bash
Executable File
46 lines
1002 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#color defs
|
|
cl_reset="\e[0m"
|
|
cl_bold="\e[1m"
|
|
cl_unbold="\e[21m"
|
|
cl_dim="\e[2m"
|
|
cl_undim="\e[22m"
|
|
cl_underline="\e[4m"
|
|
cl_no_underline="\e[24m"
|
|
cl_blink="\e[5m"
|
|
cl_unblink="\e25m"
|
|
cl_invert="\e[7m"
|
|
cl_uninvert="\e[27m"
|
|
cl_hidden="\e[8m"
|
|
cl_shown="\e[28m"
|
|
cl_text_reset="\e[39m"
|
|
cl_text_black="\e[30m"
|
|
cl_text_white="\e[97m"
|
|
cl_text_red="\e[31m"
|
|
cl_text_green="\e[32m"
|
|
cl_text_yellow="\e[33m"
|
|
cl_text_blue="\e[34m"
|
|
cl_text_magenta="\e[35m"
|
|
cl_text_cyan="\e[36m"
|
|
cl_text_grey="\e[90m"
|
|
cl_text_lightgrey="\e[37m"
|
|
cl_text_lightred="\e[91m"
|
|
cl_text_lightgreen="\e[92m"
|
|
cl_text_lightyellow="\e[93m"
|
|
cl_text_lightblue="\e[94m"
|
|
cl_back_reset="\e[49m"
|
|
cl_back_black="\e[40m"
|
|
cl_back_white="\e[107m"
|
|
cl_back_red="\e[41m"
|
|
cl_back_green="\e[42m"
|
|
cl_back_yellow="\e[43m"
|
|
cl_back_blue="\e[44m"
|
|
cl_back_magenta="\e[45m"
|
|
cl_back_cyan="\e[46m"
|
|
cl_back_grey="\e[100m"
|
|
cl_back_lightgrey="\e[47m"
|
|
cl_back_lightred="\e[101m"
|
|
cl_back_lightgreen="\e[102m"
|
|
cl_back_lightyellow="\e[103m"
|
|
cl_back_lightblue="\e[104m" |