From 9efc4b0ec45765dcb3f7bfd22d167f369eff88b1 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Thu, 28 Mar 2024 18:01:02 +0300 Subject: [PATCH] added bold bright colors --- colors.sh | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/colors.sh b/colors.sh index 3ba951f..fd50545 100644 --- a/colors.sh +++ b/colors.sh @@ -17,6 +17,11 @@ export WHITE='\033[0;37m' export GRAY='\033[0;90m' export NC='\033[0m' # reset color +# Bold black and white +export BLACK_B='\033[1;30m' +export WHITE_B='\033[1;37m' +export GRAY_B='\033[1;90m' + # Basic colors export RED='\033[0;31m' export GREEN='\033[0;32m' @@ -25,6 +30,14 @@ export YELLOW='\033[0;33m' export MAGENTA='\033[0;35m' export CYAN='\033[0;36m' +# Bold basic colors +export RED_B='\033[1;31m' +export GREEN_B='\033[1;32m' +export BLUE_B='\033[1;34m' +export YELLOW_B='\033[1;33m' +export MAGENTA_B='\033[1;35m' +export CYAN_B='\033[1;36m' + # Bright colors export BRIGHT_RED='\033[0;91m' export BRIGHT_GREEN='\033[0;92m' @@ -33,13 +46,13 @@ export BRIGHT_YELLOW='\033[0;93m' export BRIGHT_MAGENTA='\033[0;95m' export BRIGHT_CYAN='\033[0;96m' -# Bold colors -export BOLD_RED='\033[1;31m' -export BOLD_GREEN='\033[1;32m' -export BOLD_BLUE='\033[1;34m' -export BOLD_YELLOW='\033[1;33m' -export BOLD_MAGENTA='\033[1;35m' -export BOLD_CYAN='\033[1;36m' +# Bold bright colors +export BRIGHT_RED_B='\033[1;91m' +export BRIGHT_GREEN_B='\033[1;92m' +export BRIGHT_BLUE_B='\033[1;94m' +export BRIGHT_YELLOW_B='\033[1;93m' +export BRIGHT_MAGENTA_B='\033[1;95m' +export BRIGHT_CYAN_B='\033[1;96m' # Styles export BOLD='\033[1m'