base-logging
terminal_colors.h
Go to the documentation of this file.
1 /*
2  * terminal_colors.h
3  *
4  * Created on: 12.03.2009
5  * Author: Steffen Planthaber
6  *
7  * http://www.termsys.demon.co.uk/vtansi.htm
8 
9 
10  Set Attribute Mode <ESC>[{attr1};...;{attrn}m
11 
12  Sets multiple display attribute settings. The following lists standard attributes:
13 
14  0 Reset all attributes
15  1 Bright
16  2 Dim
17  4 Underscore
18  5 Blink
19  7 Reverse
20  8 Hidden
21 
22  Foreground Colours
23  30 Black
24  31 Red
25  32 Green
26  33 Yellow
27  34 Blue
28  35 Magenta
29  36 Cyan
30  37 White
31 
32  Background Colours
33  40 Black
34  41 Red
35  42 Green
36  43 Yellow
37  44 Blue
38  45 Magenta
39  46 Cyan
40  47 White
41 
42  *
43  *
44  */
45 
46 #ifndef COLORS_H_
47 #define COLORS_H_
48 
49 // colors
50 #define COLOR_ESC "\033"
51 #define COLOR_NORMAL COLOR_ESC"[0m"
52 #define COLOR_BIG COLOR_ESC"[1;1m" //big
53 #define COLOR_LIGHT COLOR_ESC"[1;2m" //italic?
54 #define COLOR_UNDERLINE COLOR_ESC"[1;4m" //underscored
55 #define COLOR_BG_BLACK COLOR_ESC"[1;7m" //background black, foreground white(?)
56 #define COLOR_BG_WHITE COLOR_ESC"[1;8m" //background white, foreground white(?)
57 #define COLOR_SCORED COLOR_ESC"[1;4m" //scored
58 // font colors
59 #define COLOR_FG_DARKGREY COLOR_ESC"[1;30m"
60 #define COLOR_FG_DARKRED COLOR_ESC"[1;31m"
61 #define COLOR_FG_DARKGREEN COLOR_ESC"[1;32m"
62 #define COLOR_FG_DARKYELLOW COLOR_ESC"[1;33m"
63 #define COLOR_FG_DARKBLUE COLOR_ESC"[1;34m"
64 #define COLOR_FG_DARKVIOLET COLOR_ESC"[1;35m"
65 #define COLOR_FG_LIGHTBLUE COLOR_ESC"[1;36m"
66 #define COLOR_FG_WHITE COLOR_ESC"[1;37m"
67 #define COLOR_FG_BLACK COLOR_ESC"[1;38m"
68 
69 #define COLOR_FG_MIDGREY COLOR_ESC"[1;90m"
70 #define COLOR_FG_LIGHTRED COLOR_ESC"[1;91m"
71 #define COLOR_FG_LIGHTGREEN COLOR_ESC"[1;92m"
72 #define COLOR_FG_LIGHTYELLOW COLOR_ESC"[1;93m"
73 #define COLOR_FG_LIGHTVIOLET COLOR_ESC"[1;95m"
74 
75 // background colors
76 #define COLOR_BG_DARKGREY COLOR_ESC"[1;40m"
77 #define COLOR_BG_DARKRED COLOR_ESC"[1;41m"
78 #define COLOR_BG_DARKGREEN COLOR_ESC"[1;42m"
79 #define COLOR_BG_DARKYELLOW COLOR_ESC"[1;43m"
80 #define COLOR_BG_DARKBLUE COLOR_ESC"[1;44m"
81 #define COLOR_BG_DARKVIOLET COLOR_ESC"[1;45m"
82 #define COLOR_BG_DARKBLUE2 COLOR_ESC"[1;46m"
83 #define COLOR_BG_LIGHTGREY COLOR_ESC"[1;47m"
84 
85 #define COLOR_BG_MIDGREY COLOR_ESC"[1;100m"
86 #define COLOR_BG_LIGHTRED COLOR_ESC"[1;101m"
87 #define COLOR_BG_LIGHTGREEN COLOR_ESC"[1;102m"
88 #define COLOR_BG_LIGHTYELLOW COLOR_ESC"[1;103m"
89 #define COLOR_BG_LIGHTBLUE COLOR_ESC"[1;104m"
90 #define COLOR_BG_LIGHTVIOLET COLOR_ESC"[1;105m"
91 #define COLOR_BG_LIGHTBLUE2 COLOR_ESC"[1;106m"
92 
93 
94 
95 #endif
96