aboutsummaryrefslogtreecommitdiffstats
path: root/color.h
blob: 7de787a2a5a7ed0e009136b4a3288351ab5c53b9 (plain) (blame)
1
2
3
4
5
6
7
8
static const mu_Color BLACK = {0, 0, 0, 255};
static const mu_Color WHITE = {255, 255, 255, 255};
static const mu_Color LIGHT_GRAY = {222, 222, 222, 255};
static const mu_Color DARK_GRAY = {128, 128, 128, 255};
static const mu_Color RED = {255, 0, 0, 255};
static const mu_Color GREEN = {0, 255, 0, 255};
static const mu_Color BLUE = {0, 0, 255, 255};
static const mu_Color TRANSPARENT = {0, 0, 0, 0};