aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Graphics/je_color.cpp
blob: 821f19e1ea1d4fffd598a0683709b5874b1a1e8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "je_color.h"

namespace jin
{
	namespace graphics
	{

		const Color Color::WHITE = Color(255, 255, 255);
		const Color Color::BLACK = Color(0, 0, 0);
		const Color Color::RED = Color(255, 0, 0);
		const Color Color::GREEN = Color(0, 255, 0);
		const Color Color::BLUE = Color(0, 0, 255);
		const Color Color::MAGENTA = Color(255, 0, 255);
		const Color Color::YELLOW = Color(255, 255, 0);

	}
}