diff options
Diffstat (limited to 'tdepacman/colors.h')
-rw-r--r-- | tdepacman/colors.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tdepacman/colors.h b/tdepacman/colors.h new file mode 100644 index 0000000..33beae2 --- /dev/null +++ b/tdepacman/colors.h @@ -0,0 +1,21 @@ +#ifndef COLORS_H +#define COLORS_H + +#include <tqcolor.h> + +#define BLACK TQColor(TQt::black) +#define RED TQColor(TQt::red) +#define BROWN TQColor(0xde, 0x95, 0x41) +#define PINK TQColor(0xff, 0xba, 0xde) +#define CYAN TQColor(0x00, 0xff, 0xde) +#define LIGHTBLUE TQColor(0x41, 0xba, 0xde) +#define ORANGE TQColor(0xff, 0xba, 0x41) +#define YELLOW TQColor(TQt::yellow) +#define BLUE TQColor(0x20, 0x20, 0xde) +#define GREEN TQColor(TQt::green) +#define LIGHTGREEN TQColor(0x41, 0xba, 0x94) +#define FLESH TQColor(0xff, 0xba, 0x94) +#define WHITE TQColor(0xd8, 0xdc, 0xd8) + +#endif // COLORS_H + |