Added new colors and regrouping

This commit is contained in:
Michael Boelen 2019-07-07 18:46:55 +02:00
parent 007faf47c3
commit 05012f60fd
No known key found for this signature in database
GPG Key ID: 26141F77A09D7F04

View File

@ -349,7 +349,8 @@ unset LANG
################################################################################# #################################################################################
# #
# Normal color names # Normal color names (BG will color background)
BG_BLUE="$(printf '\033[0;44m')"
CYAN="$(printf '\033[0;36m')" CYAN="$(printf '\033[0;36m')"
BLUE="$(printf '\033[0;34m')" BLUE="$(printf '\033[0;34m')"
BROWN="$(printf '\033[0;33m')" BROWN="$(printf '\033[0;33m')"
@ -363,15 +364,13 @@ unset LANG
YELLOW="$(printf '\033[1;33m')" YELLOW="$(printf '\033[1;33m')"
WHITE="$(printf '\033[1;37m')" WHITE="$(printf '\033[1;37m')"
# Markup # Special markup
BOLD="${WHITE}" BOLD="${WHITE}"
NORMAL="$(printf '\033[0m')"
# With background
BG_BLUE="$(printf '\033[0;44m')"
# Semantic names # Semantic names
BG_WARNING="$(printf '\033[30;43m')" # Yellow background with grey text
HEADER="${WHITE}" HEADER="${WHITE}"
NORMAL="$(printf '\033[0m')"
WARNING="${RED}" WARNING="${RED}"
SECTION="${YELLOW}" SECTION="${YELLOW}"
NOTICE="${YELLOW}" NOTICE="${YELLOW}"