diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-08-17 18:58:43 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-08-17 18:58:43 +0200 |
commit | 6f2c87870081718731cccee678e1e89869826de2 (patch) | |
tree | 942f97a4b9d4126d385e8bdc0aee30ff3dc6ed6d /kpacman/colors.h | |
download | tdepacman-6f2c87870081718731cccee678e1e89869826de2.tar.gz tdepacman-6f2c87870081718731cccee678e1e89869826de2.zip |
Initial import of version 0.3.2 from the source package.
https://sourceforge.net/projects/kpacman/files/kpacman/0.3.2/kpacman-0.3.2.tar.gz
Original package is licenced under GPL 2.0.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'kpacman/colors.h')
-rw-r--r-- | kpacman/colors.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/kpacman/colors.h b/kpacman/colors.h new file mode 100644 index 0000000..6abf385 --- /dev/null +++ b/kpacman/colors.h @@ -0,0 +1,21 @@ +#ifndef COLORS_H +#define COLORS_H + +#include <qcolor.h> + +#define BLACK QColor(Qt::black) +#define RED QColor(Qt::red) +#define BROWN QColor(0xde, 0x95, 0x41) +#define PINK QColor(0xff, 0xba, 0xde) +#define CYAN QColor(0x00, 0xff, 0xde) +#define LIGHTBLUE QColor(0x41, 0xba, 0xde) +#define ORANGE QColor(0xff, 0xba, 0x41) +#define YELLOW QColor(Qt::yellow) +#define BLUE QColor(0x20, 0x20, 0xde) +#define GREEN QColor(Qt::green) +#define LIGHTGREEN QColor(0x41, 0xba, 0x94) +#define FLESH QColor(0xff, 0xba, 0x94) +#define WHITE QColor(0xd8, 0xdc, 0xd8) + +#endif // COLORS_H + |