zshrc: do not unconditionally overwrite $COLORTERM
[grml-etc-core.git] / etc / grml_nocolors
1 # Filename:      grml_nocolors 
2 # Purpose:       "no colors" definition file - don't use any escape sequences
3 # Authors:       (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2.
6 ################################################################################
7 # Notice: if you want to use colors in your script you probably are
8 # searching for /etc/grml_colors. This file is meant to be used
9 # when you don't want to get escape sequences in output. For example
10 # this is useful when logging stuff to a file.
11 ################################################################################
12
13 # ANSI COLORS
14 CRE=''
15 NORMAL=''
16 # RED: Failure or error message
17 RED=''
18 # GREEN: Success message
19 GREEN=''
20 # YELLOW: Descriptions
21 YELLOW=''
22 # BLUE: System messages
23 BLUE=''
24 # MAGENTA: Found devices or drivers
25 MAGENTA=''
26 # CYAN: Questions
27 CYAN=''
28 # BOLD WHITE: Hint
29 WHITE=''
30
31 ## END OF FILE #################################################################