module meatbox.colour;

alias Color =Colour;
struct Colour
{
public:
	ubyte red, green, blue;
	static Colour white ={255, 255, 255};
}