diff --git a/conf/color-theme.none b/conf/color-theme.none new file mode 100644 index 0000000..0619608 --- /dev/null +++ b/conf/color-theme.none @@ -0,0 +1,4 @@ +# +# color scheme "none" (disable colors) +# +ESC= CRIT= NOTE= WARN= EXIT= NORM= diff --git a/conf/color-theme.terminal-dark b/conf/color-theme.terminal-dark new file mode 100644 index 0000000..43d2fab --- /dev/null +++ b/conf/color-theme.terminal-dark @@ -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") diff --git a/conf/color-theme.terminal-white b/conf/color-theme.terminal-white new file mode 100644 index 0000000..0cb284e --- /dev/null +++ b/conf/color-theme.terminal-white @@ -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") diff --git a/conf/color-theme.web b/conf/color-theme.web new file mode 100644 index 0000000..3ca9f85 --- /dev/null +++ b/conf/color-theme.web @@ -0,0 +1,9 @@ +# +# color scheme "web" +# +ESC= +CRIT="" +NOTE="" +WARN="" +EXIT="$CRIT" +NORM=""