This is a script that creates and exports a set of variables which contain the 8 basic colours that can be displayed on most terminals. It could easily be extended to use more colours if wanted.
In addition it also creates and export a set of variables which handle other specific useful terminal information, cls, bold, reset etc.
The idea is for it to be included by other scripts to allow for colour to be added to a script in a clean and simple way.
source bash-colour-include.sh
echo "${bgBlack}${fgRed}This should be red text${reset}"
echo "${bgBlack}${fgYellow}This should be yellow text${reset}"
echo "${bgWhite}${fgRed}This should be red on a white background${reset}"
If you do not known if your terminal supports colour, then take a look at our testcard tool which will show you.