From 63b96607ee6754d089de2f0fc2ee5c56eaae032d Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Wed, 26 Apr 2023 20:10:36 -0500 Subject: [PATCH] Update colors.inc --- colors.inc | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/colors.inc b/colors.inc index 47ece6d..3fb8787 100755 --- a/colors.inc +++ b/colors.inc @@ -47,4 +47,23 @@ idsST[Dim]="\e[2m" idsST[UnderLine]="\e[4m" idsST[Blink]="\e[5m" idsST[Invert]="\e[7m" -idsST[Hidden]="\e[8m" \ No newline at end of file +idsST[Hidden]="\e[8m" + +declare -A idsCLf +idsCLf[black]=$(tput setaf 0) +idsCLf[red]=$(tput setaf 1) +idsCLf[green]=$(tput setaf 2) +idsCLf[yellow]=$(tput setaf 3) +idsCLflime[yellow]=$(tput setaf 190) +idsCLf[powderblue]=$(tput setaf 153) +idsCLf[blue]=$(tput setaf 4) +idsCLf[magenta]=$(tput setaf 5) +idsCLf[cyan]=$(tput setaf 6) +idsCLf[white]=$(tput setaf 7) +idsCLf[bright]=$(tput bold) +idsCLf[normal]=$(tput sgr0) +idsCLf[blink]=$(tput blink) +idsCLf[reverse]=$(tput smso) +idsCLf[underline]=$(tput smul) + +