CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ANSIColors.h
Go to the documentation of this file.
1 
8 #ifndef _ANSICOLORS
9 #define _ANSICOLORS
10 
11 #define ACBlack "\x1B[0;30m"
12 #define ACBlue "\x1B[0;34m"
13 #define ACGreen "\x1B[0;32m"
14 #define ACCyan "\x1B[0;36m"
15 #define ACRed "\x1B[0;31m"
16 #define ACPurple "\x1B[0;35m"
17 #define ACBrown "\x1B[0;33m"
18 #define ACGray "\x1B[0;37m"
19 #define ACDarkGray "\x1B[1;30m"
20 #define ACLightBlue "\x1B[1;34m"
21 #define ACLightGreen "\x1B[1;32m"
22 #define ACLightCyan "\x1B[1;36m"
23 #define ACLightRed "\x1B[1;31m"
24 #define ACLightPurple "\x1B[1;35m"
25 #define ACYellow "\x1B[1;33m"
26 #define ACWhite "\x1B[1;37m"
27 
28 #define ACPlain "\x1B[0m"
29 #define ACBold "\x1B[1m"
30 #define ACUnderline "\x1B[4m"
31 #define ACBlink "\x1B[5m"
32 #define ACReverse "\x1B[7m"
33 
34 #define ACClear "\x1B[2J"
35 #define ACClearL "\x1B[2K"
36 
37 #define ACSave "\x1B[s"
38 #define ACRecall "\x1B[u"
39 
40 #endif