Update colors.inc

This commit is contained in:
2023-04-26 20:13:59 -05:00
parent 63b96607ee
commit 17466e0b84

View File

@@ -50,20 +50,20 @@ idsST[Invert]="\e[7m"
idsST[Hidden]="\e[8m" idsST[Hidden]="\e[8m"
declare -A idsCLf declare -A idsCLf
idsCLf[black]=$(tput setaf 0) idsCLf[Black]=$(tput setaf 0)
idsCLf[red]=$(tput setaf 1) idsCLf[Red]=$(tput setaf 1)
idsCLf[green]=$(tput setaf 2) idsCLf[Green]=$(tput setaf 2)
idsCLf[yellow]=$(tput setaf 3) idsCLf[Yello]=$(tput setaf 3)
idsCLflime[yellow]=$(tput setaf 190) idsCLf[LimeYellow]=$(tput setaf 190)
idsCLf[powderblue]=$(tput setaf 153) idsCLf[PowderBlue]=$(tput setaf 153)
idsCLf[blue]=$(tput setaf 4) idsCLf[Blue]=$(tput setaf 4)
idsCLf[magenta]=$(tput setaf 5) idsCLf[Magenta]=$(tput setaf 5)
idsCLf[cyan]=$(tput setaf 6) idsCLf[Cyan]=$(tput setaf 6)
idsCLf[white]=$(tput setaf 7) idsCLf[White]=$(tput setaf 7)
idsCLf[bright]=$(tput bold) idsCLf[Bright]=$(tput bold)
idsCLf[normal]=$(tput sgr0) idsCLf[Normal]=$(tput sgr0)
idsCLf[blink]=$(tput blink) idsCLf[Blink]=$(tput blink)
idsCLf[reverse]=$(tput smso) idsCLf[Reverse]=$(tput smso)
idsCLf[underline]=$(tput smul) idsCLf[Underline]=$(tput smul)