aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Color.cpp
blob: 1374198c04bccf868ee028e00ca9c40947a31cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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};