803e0901a0e5082eeafb667adbb7e31392983a80
[physics.git] / src / graphics / colors.h
1
2 /// ***** Public Variables *****
3
4 static float const cWhite[]     = {1.0, 1.0, 1.0};
5 static float const cBlack[]     = {0.0, 0.0, 0.0};
6 static float const cGrey[]      = {0.5, 0.5, 0.5};
7
8 static float const cRed[]       = {1.0, 0.0, 0.0};
9 static float const cGreen[]     = {0.0, 1.0, 0.0};
10 static float const cBlue[]      = {0.0, 0.0, 1.0};
11
12 static float const cYellow[]    = {1.0, 1.0, 0.0};
13 static float const cMagenta[]   = {1.0, 0.0, 1.0};
14 static float const cCyan[]      = {0.0, 1.0, 1.0};