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