00001 #ifndef COLORS_H
00002 #define COLORS_H
00003
00004 #include <qcolor.h>
00005
00006 #define BLACK QColor(Qt::black)
00007 #define RED QColor(Qt::red)
00008 #define BROWN QColor(0xde, 0x95, 0x41)
00009 #define PINK QColor(0xff, 0xba, 0xde)
00010 #define CYAN QColor(0x00, 0xff, 0xde)
00011 #define LIGHTBLUE QColor(0x41, 0xba, 0xde)
00012 #define ORANGE QColor(0xff, 0xba, 0x41)
00013 #define YELLOW QColor(Qt::yellow)
00014 #define BLUE QColor(0x20, 0x20, 0xde)
00015 #define GREEN QColor(Qt::green)
00016 #define LIGHTGREEN QColor(0x41, 0xba, 0x94)
00017 #define FLESH QColor(0xff, 0xba, 0x94)
00018 #define WHITE QColor(0xd8, 0xdc, 0xd8)
00019
00020 #endif // COLORS_H
00021