1#ifndef CONSTANTS_H
2#define CONSTANTS_H
3
4
5#include <GraphicsDefs.h>
6
7
8const rgb_color kBlack      = { 0, 0, 0, 0};
9const rgb_color kDarkGrey   = { 150, 150, 150, 0};
10const rgb_color kGrey       = { 200, 200, 200, 0};
11const rgb_color kLightBlue  = { 200, 200, 255, 0};
12const rgb_color kLightGreen = { 255, 200, 200, 0};
13
14
15#endif	// CONSTANTS_H
16