diff options
author | pixel <pixel> | 2003-03-14 23:57:16 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-03-14 23:57:16 +0000 |
commit | 283f5ca21aad7aa239d053268679b9e57012f13e (patch) | |
tree | 88607b08644e2b2954bd09349f2a40d908afae59 /include | |
parent | 679fc7ca4891979cb14b8335014cd959ece774a8 (diff) |
Added some very old colors
Diffstat (limited to 'include')
-rw-r--r-- | include/Color.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/Color.h b/include/Color.h index 7e5432c..ed68eee 100644 --- a/include/Color.h +++ b/include/Color.h @@ -295,4 +295,22 @@ FFFF00 yellow #define WHITESMOKE (Color(0xf5, 0xf5, 0xf5)) #define YELLOW (Color(0xff, 0xff, 0x00)) #define YELLOWGREEN (Color(0x9a, 0xcd, 0x32)) + +#define DOS_BLACK (Color(0x00, 0x00, 0x00)) // Black +#define DOS_BLUE (Color(0x00, 0x00, 0xaa)) // Blue +#define DOS_GREEN (Color(0x00, 0xaa, 0x00)) // Green +#define DOS_CYAN (Color(0x00, 0xaa, 0xaa)) // Cyan +#define DOS_RED (Color(0xaa, 0x00, 0x00)) // Red +#define DOS_MAGENTA (Color(0xaa, 0x00, 0xaa)) // Magenta +#define DOS_BRAWN (Color(0xaa, 0x55, 0x00)) // Brawn +#define DOS_WHITE (Color(0xaa, 0xaa, 0xaa)) // White +#define DOS_GRAY (Color(0x55, 0x55, 0x55)) // Gray +#define DOS_HIGH_BLUE (Color(0x55, 0x55, 0xff)) // High Blue +#define DOS_HIGH_GREEN (Color(0x55, 0xff, 0x55)) // High Green +#define DOS_HIGH_CYAN (Color(0x55, 0xff, 0xff)) // High Cyan +#define DOS_HIGH_RED (Color(0xff, 0x55, 0x55)) // High Red +#define DOS_HIGH_MAGENTA (Color(0xff, 0x55, 0xff)) // High Magenta +#define DOS_YELLOW (Color(0xff, 0xff, 0x55)) // Yellow +#define DOS_HIGH_WHITE (Color(0xff, 0xff, 0xff)) // High White + #endif |