summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/Color.h18
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