21 lines
301 B
C
21 lines
301 B
C
#ifndef _COLORS_H_
|
|
#define _COLORS_H_
|
|
|
|
|
|
#define _red 0x00
|
|
#define _blue 0x01
|
|
#define _green 0x02
|
|
#define _orange 0x03
|
|
#define _rose 0x04
|
|
#define _magenta 0x05
|
|
#define _violet 0x06
|
|
#define _azure 0x07
|
|
#define _cyan 0x08
|
|
#define _springgreen 0x09
|
|
#define _chartreuse 0x0a
|
|
#define _yellow 0x0b
|
|
|
|
|
|
|
|
#endif
|