config: add color themes

Signed-off-by: Davide Madrisan <davide.madrisan@gmail.com>
This commit is contained in:
Davide Madrisan 2012-11-11 00:06:33 +01:00
parent 98fe5c6a6f
commit 61c739e733
4 changed files with 31 additions and 0 deletions

4
conf/color-theme.none Normal file
View File

@ -0,0 +1,4 @@
#
# color scheme "none" (disable colors)
#
ESC= CRIT= NOTE= WARN= EXIT= NORM=

View File

@ -0,0 +1,9 @@
#
# color scheme "terminal-dark"
#
ESC=$(echo -en "\033") # ascii ESCape
CRIT="${ESC}[1;31m" # switch on red
NOTE="${ESC}[1;33m" # switch on yellow
WARN="${ESC}[1;31m"
EXIT="${ESC}[1;31m"
NORM=$(echo -en "${ESC}[m\017")

View File

@ -0,0 +1,9 @@
#
# color scheme "terminal-white"
#
ESC=$(echo -en "\033") # ascii ESCape
CRIT="${ESC}[1;31m" # switch on red
NOTE="${ESC}[1;34m" # switch on blu
WARN="${ESC}[1;31m"
EXIT="${ESC}[1;31m"
NORM=$(echo -en "${ESC}[m\017")

9
conf/color-theme.web Normal file
View File

@ -0,0 +1,9 @@
#
# color scheme "web"
#
ESC=
CRIT="<font color=white style=\"background-color:red\">"
NOTE="<font color=gold>"
WARN="<font color=red>"
EXIT="$CRIT"
NORM="</font>"