Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:17

0001 /*! \file ANSIColors.hh
0002  *  \brief Header file containing macros to highlight output lines in color.<BR>
0003  *  Check also <A
0004  * HREF="http://www.bluesock.org/~willg/dev/ansi.html">http://www.bluesock.org/~willg/dev/ansi.html</A>
0005  *  \image html separator.gif
0006  *  \image latex separator.pdf
0007  */
0008 
0009 #ifndef _ANSICOLORS
0010 #define _ANSICOLORS
0011 
0012 #define ACBlack "\x1B[0;30m"
0013 #define ACBlue "\x1B[0;34m"
0014 #define ACGreen "\x1B[0;32m"
0015 #define ACCyan "\x1B[0;36m"
0016 #define ACRed "\x1B[0;31m"
0017 #define ACPurple "\x1B[0;35m"
0018 #define ACBrown "\x1B[0;33m"
0019 #define ACGray "\x1B[0;37m"
0020 #define ACDarkGray "\x1B[1;30m"
0021 #define ACLightBlue "\x1B[1;34m"
0022 #define ACLightGreen "\x1B[1;32m"
0023 #define ACLightCyan "\x1B[1;36m"
0024 #define ACLightRed "\x1B[1;31m"
0025 #define ACLightPurple "\x1B[1;35m"
0026 #define ACYellow "\x1B[1;33m"
0027 #define ACWhite "\x1B[1;37m"
0028 
0029 #define ACPlain "\x1B[0m"
0030 #define ACBold "\x1B[1m"
0031 #define ACUnderline "\x1B[4m"
0032 #define ACBlink "\x1B[5m"
0033 #define ACReverse "\x1B[7m"
0034 
0035 #define ACClear "\x1B[2J"
0036 #define ACClearL "\x1B[2K"
0037 
0038 #define ACSave "\x1B[s"
0039 #define ACRecall "\x1B[u"
0040 
0041 #endif