13 lines
371 B
Text
13 lines
371 B
Text
|
|
||
|
#ifndef __sys_colors__
|
||
|
#define __sys_colors__
|
||
|
|
||
|
#define COLOR_BLACK "0, 0, 0, 1"
|
||
|
#define COLOR_WHITE "1, 1, 1, 1"
|
||
|
#define COLOR_RED "1, 0, 0, 1"
|
||
|
#define COLOR_GREEN "0, 1, 0, 1"
|
||
|
#define COLOR_BLUE "0, 0, 1, 1"
|
||
|
#define COLOR_INVISIBLE "0, 0, 0, 0"
|
||
|
|
||
|
#endif // !__sys_colors__
|