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
1 changed files with 5 additions and 6 deletions

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