summaryrefslogtreecommitdiffstats
path: root/kpacman/colors.h
blob: 33beae29c0b62de328cf2386915e417d25888f3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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