Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/consts')
-rw-r--r--include/consts38
1 files changed, 19 insertions, 19 deletions
diff --git a/include/consts b/include/consts
index e85c00b6..f49df395 100644
--- a/include/consts
+++ b/include/consts
@@ -329,33 +329,33 @@ unset LANG
#
# Normal color names
- CYAN=""
- BLUE=""
- BROWN=""
- DARKGRAY=""
- GRAY=""
- GREEN=""
- LIGHTBLUE=""
- MAGENTA=""
- PURPLE=""
- RED=""
- YELLOW=""
- WHITE=""
+ CYAN="$(printf '\033[0;36m')"
+ BLUE="$(printf '\033[0;34m')"
+ BROWN="$(printf '\033[0;33m')"
+ DARKGRAY="$(printf '\033[0;30m')"
+ GRAY="$(printf '\033[0;37m')"
+ GREEN="$(printf '\033[1;32m')"
+ LIGHTBLUE="$(printf '\033[0;94m')"
+ MAGENTA="$(printf '\033[1;35m')"
+ PURPLE="$(printf '\033[0;35m')"
+ RED="$(printf '\033[1;31m')"
+ YELLOW="$(printf '\033[1;33m')"
+ WHITE="$(printf '\033[1;37m')"
# Markup
BOLD="${WHITE}"
# With background
- BG_BLUE=""
+ BG_BLUE="$(printf '\033[0;44m')"
# Semantic names
HEADER="${WHITE}"
- NORMAL=""
- WARNING="" # Bad (red)
- SECTION="" # Section (yellow)
- NOTICE="" # Notice (yellow)
- OK="" # Ok (green)
- BAD="" # Bad (red)
+ NORMAL="$(printf '\033[0m')"
+ WARNING="${RED}"
+ SECTION="${YELLOW}"
+ NOTICE="${YELLOW}"
+ OK="${GREEN}"
+ BAD="${RED}"
#
#################################################################################