1 2 3 4 5 6 7
#include "color.h" const color_t COL_RED = { 255, 0, 0, 255 }; const color_t COL_GREEN = { 0, 255, 0, 255 }; const color_t COL_BLUE = { 0, 0, 255, 255 }; const color_t COL_TRANSP = { 0, 0, 0, 0 };