From 283f5ca21aad7aa239d053268679b9e57012f13e Mon Sep 17 00:00:00 2001
From: pixel <pixel>
Date: Fri, 14 Mar 2003 23:57:16 +0000
Subject: Added some very old colors

---
 include/Color.h | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

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
-- 
cgit v1.2.3