aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-03-22 19:35:01 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-03-22 19:35:01 -0500
commitbcc2ffa90c4812e585b4330d0418a8af6c7edf82 (patch)
tree1448e436c5b947fbfce90a122bb9cb0aa82078ca
parent31658d9562162d6083b83c316372399f48182651 (diff)
Add bold, intense and blinking.
-rw-r--r--colors.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/colors.sh b/colors.sh
index 29c3735..6ecef32 100644
--- a/colors.sh
+++ b/colors.sh
@@ -1,3 +1,4 @@
+# Normal colors
BLK="\e[0;30m"
RED="\e[0;31m"
GRN="\e[0;32m"
@@ -7,4 +8,35 @@ PRP="\e[0;35m"
CYN="\e[0;36m"
WHT="\e[0;37m"
+# Bold colors
+IBLK="\e[1;30m"
+IRED="\e[1;31m"
+IGRN="\e[1;32m"
+IYLW="\e[1;33m"
+IBLU="\e[1;34m"
+IPRP="\e[1;35m"
+ICYN="\e[1;36m"
+IWHT="\e[1;37m"
+
+# Blink colors
+BLKB="\e[0;30;5m"
+REDB="\e[0;31;5m"
+GRNB="\e[0;32;5m"
+YLWB="\e[0;33;5m"
+BLUB="\e[0;34;5m"
+PRPB="\e[0;35;5m"
+CYNB="\e[0;36;5m"
+WHTB="\e[0;37;5m"
+
+IBLKB="\e[1;30;5m"
+IREDB="\e[1;31;5m"
+IGRNB="\e[1;32;5m"
+IYLWB="\e[1;33;5m"
+IBLUB="\e[1;34;5m"
+IPRPB="\e[1;35;5m"
+ICYNB="\e[1;36;5m"
+IWHTB="\e[1;37;5m"
+
RST="\e[0m"
+
+BLINK="\033[5m"