initial checkin
[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 # Latest change: Fri May 12 22:09:28 CEST 2006 [mika]
7 ################################################################################
8 # Notice: if you want to use colors in your script you probably are
9 # searching for /etc/grml_colors. This file is meant to be used
10 # when you don't want to get escape sequences in output. For example
11 # this is useful when logging stuff to a file.
12 ################################################################################
13
14 # ANSI COLORS
15 CRE=''
16 NORMAL=''
17 # RED: Failure or error message
18 RED=''
19 # GREEN: Success message
20 GREEN=''
21 # YELLOW: Descriptions
22 YELLOW=''
23 # BLUE: System messages
24 BLUE=''
25 # MAGENTA: Found devices or drivers
26 MAGENTA=''
27 # CYAN: Questions
28 CYAN=''
29 # BOLD WHITE: Hint
30 WHITE=''
31
32 ## END OF FILE #################################################################