aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Color.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/Color.cpp')
-rw-r--r--src/crepe/api/Color.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/crepe/api/Color.cpp b/src/crepe/api/Color.cpp
new file mode 100644
index 0000000..d0e3b35
--- /dev/null
+++ b/src/crepe/api/Color.cpp
@@ -0,0 +1,14 @@
+#include "Color.h"
+
+using namespace crepe;
+
+const Color Color::WHITE {0xff, 0xff, 0xff};
+const Color Color::RED {0xff, 0x00, 0x00};
+const Color Color::GREEN {0x00, 0xff, 0x00};
+const Color Color::BLUE {0x00, 0x00, 0xff};
+const Color Color::BLACK {0x00, 0x00, 0x00};
+const Color Color::CYAN {0x00, 0xff, 0xff};
+const Color Color::YELLOW {0xff, 0xff, 0x00};
+const Color Color::MAGENTA {0xff, 0x00, 0xff};
+const Color Color::GREY {0x80, 0x80, 0x80};
+const Color Color::GOLD {249, 205, 91};