14 lines
378 B
C
14 lines
378 B
C
// Color.h
|
|
// Colorref's to use with your Programs
|
|
|
|
#define RED RGB(127, 0, 0)
|
|
#define GREEN RGB( 0,127, 0)
|
|
#define BLUE RGB( 0, 0,127)
|
|
#define LIGHTRED RGB(255, 0, 0)
|
|
#define LIGHTGREEN RGB( 0,255, 0)
|
|
#define LIGHTBLUE RGB( 0, 0,255)
|
|
#define BLACK RGB( 0, 0, 0)
|
|
#define WHITE RGB(255,255,255)
|
|
#define GRAY RGB(192,192,192)
|
|
|
|
|