Some of the common bash coloring Codes

yash kumar shah
Nov 21, 2020

If you wan to print your ouput in a colorful way in bash terminal you can use these color codes to print that.

Some of the color code are

# — — — — — — — — — — — — — — — — — # Colors # — — — — — — — — — — — — — — — — —

# ----------------------------------   
# Colors
# ---------------------------------- NOCOLOR='\033[0m'
RED='\033[0;31m'
GREEN='\033[0;32m'
ORANGE='\033[0;33m'
BLUE='\033[0;34m'
PURPLE='\033[0;35m'
CYAN='\033[0;36m'
LIGHTGRAY='\033[0;37m'
DARKGRAY='\033[1;30m'
LIGHTRED='\033[1;31m'
LIGHTGREEN='\033[1;32m'
YELLOW='\033[1;33m'
LIGHTBLUE='\033[1;34m' LIGHTPURPLE='\033[1;35m' LIGHTCYAN='\033[1;36m'
WHITE='\033[1;37m'

--

--