Main Page | File List

color.h

Go to the documentation of this file.
00001 /**
00002  *\file         color.h
00003  *
00004  *\brief        macro definition for common colors. 
00005  *              
00006  *              \sa RGB.h
00007  * 
00008  *\author       Xianming Chen
00009  *              
00010  */
00011 
00012 
00013 #ifndef COLOR_H
00014 #define COLOR_H
00015 
00016 #include "RGB.h"
00017 
00018 #define    Aquamarine             RGB( 112/255.0, 219/255.0, 147/255.0)
00019 #define    MediumAquamarine       RGB(  50/255.0, 204/255.0, 153/255.0)
00020 #define    Black                  RGB(   0/255.0,   0/255.0,   0/255.0)
00021 #define    Blue                   RGB(   0/255.0,   0/255.0, 255/255.0)
00022 #define    CadetBlue              RGB(  95/255.0, 159/255.0, 159/255.0)
00023 #define    CornflowerBlue         RGB(  66/255.0,  66/255.0, 111/255.0)
00024 #define    DarkSlateBlue          RGB( 107/255.0,  35/255.0, 142/255.0)
00025 #define    LightBlue              RGB( 191/255.0, 216/255.0, 216/255.0)
00026 #define    LightSteelBlue         RGB( 143/255.0, 143/255.0, 188/255.0)
00027 #define    MediumBlue             RGB(  50/255.0,  50/255.0, 204/255.0)
00028 #define    MediumSlateBlue        RGB( 127/255.0,   0/255.0, 255/255.0)
00029 #define    MidnightBlue           RGB(  47/255.0,  47/255.0,  79/255.0)
00030 #define    NavyBlue               RGB(  35/255.0,  35/255.0, 142/255.0)
00031 #define    Navy                   RGB(  35/255.0,  35/255.0, 142/255.0)
00032 #define    SkyBlue                RGB(  50/255.0, 153/255.0, 204/255.0)
00033 #define    SlateBlue              RGB(   0/255.0, 127/255.0, 255/255.0)
00034 #define    SteelBlue              RGB(  35/255.0, 107/255.0, 142/255.0)
00035 #define    Coral                  RGB( 255/255.0, 127/255.0,   0/255.0)
00036 #define    Cyan                   RGB(   0/255.0, 255/255.0, 255/255.0)
00037 #define    Firebrick              RGB( 142/255.0,  35/255.0,  35/255.0)
00038 #define    Gold                   RGB( 204/255.0, 127/255.0,  50/255.0)
00039 #define    Goldenrod              RGB( 219/255.0, 219/255.0, 112/255.0)
00040 #define    MediumGoldenrod        RGB( 234/255.0, 234/255.0, 173/255.0)
00041 #define    Green                  RGB(   0/255.0, 255/255.0,   0/255.0)
00042 #define    DarkGreen              RGB(  47/255.0,  79/255.0,  47/255.0)
00043 #define    DarkOliveGreen         RGB(  79/255.0,  79/255.0,  47/255.0)
00044 #define    ForestGreen            RGB(  35/255.0, 142/255.0,  35/255.0)
00045 #define    LimeGreen              RGB(  50/255.0, 204/255.0,  50/255.0)
00046 #define    MediumForestGreen      RGB( 107/255.0, 142/255.0,  35/255.0)
00047 #define    MediumSeaGreen         RGB(  66/255.0, 111/255.0,  66/255.0)
00048 #define    MediumSpringGreen      RGB( 127/255.0, 255/255.0,   0/255.0)
00049 #define    PaleGreen              RGB( 143/255.0, 188/255.0, 143/255.0)
00050 #define    SeaGreen               RGB(  35/255.0, 142/255.0, 107/255.0)
00051 #define    SpringGreen            RGB(   0/255.0, 255/255.0, 127/255.0)
00052 #define    YellowGreen            RGB( 153/255.0, 204/255.0,  50/255.0)
00053 #define    DarkSlateGrey          RGB(  47/255.0,  79/255.0,  79/255.0)
00054 #define    DimGrey                RGB(  84/255.0,  84/255.0,  84/255.0)
00055 #define    LightGrey              RGB( 168/255.0, 168/255.0, 168/255.0)
00056 #define    Khaki                  RGB( 159/255.0, 159/255.0,  95/255.0)
00057 #define    Magenta                RGB( 255/255.0,   0/255.0, 255/255.0)
00058 #define    Maroon                 RGB( 142/255.0,  35/255.0, 107/255.0)
00059 #define    Orange                 RGB( 204/255.0,  50/255.0,  50/255.0)
00060 #define    Orchid                 RGB( 219/255.0, 112/255.0, 219/255.0)
00061 #define    DarkOrchid             RGB( 153/255.0,  50/255.0, 204/255.0)
00062 #define    MediumOrchid           RGB( 147/255.0, 112/255.0, 219/255.0)
00063 #define    Pink                   RGB( 188/255.0, 143/255.0, 143/255.0)
00064 #define    Plum                   RGB( 234/255.0, 173/255.0, 234/255.0)
00065 #define    Red                    RGB( 255/255.0,   0/255.0,   0/255.0)
00066 #define    IndianRed              RGB(  79/255.0,  47/255.0,  47/255.0)
00067 #define    MediumVioletRed        RGB( 219/255.0, 112/255.0, 147/255.0)
00068 #define    OrangeRed              RGB( 255/255.0,   0/255.0, 127/255.0)
00069 #define    VioletRed              RGB( 204/255.0,  50/255.0, 153/255.0)
00070 #define    Salmon                 RGB( 111/255.0,  66/255.0,  66/255.0)
00071 #define    Sienna                 RGB( 142/255.0, 107/255.0,  35/255.0)
00072 #define    Tan                    RGB( 219/255.0, 147/255.0, 112/255.0)
00073 #define    Thistle                RGB( 216/255.0, 191/255.0, 216/255.0)
00074 #define    Turquoise              RGB( 173/255.0, 234/255.0, 234/255.0)
00075 #define    DarkTurquoise          RGB( 112/255.0, 147/255.0, 219/255.0)
00076 #define    MediumTurquoise        RGB( 112/255.0, 219/255.0, 219/255.0)
00077 #define    Violet                 RGB(  79/255.0,  47/255.0,  79/255.0)
00078 #define    BlueViolet             RGB( 159/255.0,  95/255.0, 159/255.0)
00079 #define    Wheat                  RGB( 216/255.0, 216/255.0, 191/255.0)
00080 #define    White                  RGB( 255/255.0, 255/255.0, 255/255.0)
00081 #define    Yellow                 RGB( 255/255.0, 255/255.0,   0/255.0)
00082 #define    GreenYellow            RGB( 147/255.0, 219/255.0, 112/255.0)
00083 
00084 #endif

Generated on Mon Aug 2 16:51:15 2004 by doxygen 1.3.6