Use bright colors

This commit is contained in:
Kevin MacMartin 2024-09-13 13:36:58 -04:00
parent 4840754a5d
commit 27357b5dab

View file

@ -36,12 +36,12 @@ package_cache="$temp_directory/.archversion.cache" # Location to create the arch
unset c_blue c_white c_yellow c_grey c_red c_green c_reset
# Set the terminal colours to use when this script outputs to stdout
[[ -t 1 ]] && {
c_blue=$'\e[1;34m' # BLUE
c_white=$'\e[1;37m' # WHITE
c_grey=$'\e[1;30m' # DARK GREY
c_yellow=$'\e[1;33m' # YELLOW
c_red=$'\e[1;31m' # RED
c_green=$'\e[1;32m' # GREEN
c_red=$'\e[1;91m' # RED
c_green=$'\e[1;92m' # GREEN
c_yellow=$'\e[1;93m' # YELLOW
c_blue=$'\e[1;94m' # BLUE
c_white=$'\e[1;97m' # WHITE
c_grey=$'\e[1;90m' # DARK GREY
c_reset=$'\e[0m' # DISABLES COLOUR
}