Add More Colors

This commit is contained in:
Shihaam Abdul Rahman 2021-04-28 19:18:59 +05:00
parent 560950398f
commit 307242216b
2 changed files with 13 additions and 4 deletions

9
bml.sh
View File

@ -10,6 +10,15 @@ CREDENTIALS=.env
#Setting terminal output colors
red=`tput setaf 1`
green=`tput setaf 2`
brown=`tput setaf 3`
blue=`tput setaf 4`
pink=`tput setaf 5`
cyan=`tput setaf 6`
gray=`tput setaf 7`
darkgray=`tput setaf 8`
lightred=`tput setaf 9`
lightgreen=`tput setaf 10`
yellow=`tput setaf 11`
reset=`tput sgr0`

View File

@ -24,9 +24,9 @@ echo "╚═════╝░╚═╝░░░░░╚═╝╚════
echo "${reset}"
echo ${green}Welcome ${reset}$NAME
echo ""
echo Phone: $PHONE
echo Email: $EMAIL
echo Birthday: $DOB
echo ID Card: $IDCARD
echo ${cyan}Phone${reset}: $PHONE
echo ${cyan}Email${reset}: $EMAIL
echo ${cyan}Birthday${reset}: $DOB
echo ${cyan}ID Card${reset}: $IDCARD
echo ""
source mainmenu.sh