Jpp
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
JColor.hh
Go to the documentation of this file.
1 #ifndef __JEEP__JCOLOR__
2 #define __JEEP__JCOLOR__
3 
4 /**
5  * \file
6  * I/O coloring auxiliaries.
7  * \author mdejong
8  */
9 
10 const char* const WHITE = "\033[97m"; //!< print white
11 const char* const CYAN = "\033[96m"; //!< print cyan
12 const char* const PURPLE = "\033[95m"; //!< print purple
13 const char* const BLUE = "\033[94m"; //!< print blue
14 const char* const YELLOW = "\033[93m"; //!< print yellow
15 const char* const GREEN = "\033[92m"; //!< print green
16 const char* const RED = "\033[91m"; //!< print red
17 const char* const RESET = "\033[0m"; //!< print reset color
18 const char* const BOLD = "\033[1m"; //!< print bold
19 
20 #endif
const char *const PURPLE
print purple
Definition: JColor.hh:12
const char *const WHITE
print white
Definition: JColor.hh:10
const char *const YELLOW
print yellow
Definition: JColor.hh:14
const char *const BOLD
print bold
Definition: JColor.hh:18
const char *const CYAN
print cyan
Definition: JColor.hh:11
const char *const GREEN
print green
Definition: JColor.hh:15
const char *const RED
print red
Definition: JColor.hh:16
const char *const BLUE
print blue
Definition: JColor.hh:13
const char *const RESET
print reset color
Definition: JColor.hh:17