From 8ac22407e462a53c95c240064dd5f132a0cf3982 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sat, 25 Nov 2023 21:20:34 -0600 Subject: [PATCH] Update colors.inc --- colors.inc | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/colors.inc b/colors.inc index 0d1db7e..38b32e6 100755 --- a/colors.inc +++ b/colors.inc @@ -3,23 +3,24 @@ declare -A idsCL idsCL[Default]="\e[39m" +idsCL[White]="\e[97m" +idsCL[LightGray]="\e[37m" +idsCL[DarkGray]="\e[90m" idsCL[Black]="\e[30m" idsCL[Red]="\e[31m" idsCL[RedBold]="\e[31;1m" -idsCL[Green]="\e[32m" -idsCL[Yellow]="\e[33m" -idsCL[Blue]="\e[34m" -idsCL[Magenta]="\e[35m" -idsCL[Cyan]="\e[36m" -idsCL[LightGray]="\e[37m" -idsCL[DarkGray]="\e[90m" idsCL[LightRed]="\e[91m" -idsCL[LightGreen]="\e[92m" -idsCL[LightYellow]="\e[93m" -idsCL[LightBlue]="\e[94m" +idsCL[Magenta]="\e[35m" idsCL[LightMagenta]="\e[95m" +idsCL[Blue]="\e[34m" +idsCL[LightBlue]="\e[94m" +idsCL[Cyan]="\e[36m" idsCL[LightCyan]="\e[96m" -idsCL[White]="\e[97m" +idsCL[Green]="\e[32m" +idsCL[LightGreen]="\e[92m" +idsCL[Yellow]="\e[33m" +idsCL[LightYellow]="\e[93m" + declare -A idsBG idsBG[Default]="\e[49m"