8 Colors.
ESC[ 0;⟨n⟩ m Select normal color ESC[ 1;⟨n⟩ m Select bright color
where n is:
echo -e "\033[0;31mThis is in RED"
NOTE: This is made up of:
echo -e "\033[1;31mThis is in BRIGHT RED"
NOTE: This is made up of:
Bright colors can be used simply by using a 1 after the ESC instead of a 0.
echo -e "\033[0;91mThis is in BRIGHT RED"
echo -e "\033[0;31mThis is in RED\033[0;34mThis is in Blue"
for (( i = 30; i < 38; i++ )); do echo -e "\033[0;"$i"m Normal: (0;$i); \033[1;"$i"m Bright: (1;$i)"; done