-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCOLOR_08.h
More file actions
52 lines (44 loc) · 1.43 KB
/
COLOR_08.h
File metadata and controls
52 lines (44 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef COLOR_08_H_
#define COLOR_08_H_
#define COLOR08_INC_RED 0x20
#define COLOR08_INC_GREEN 0x04
#define COLOR08_INC_BLUE 0x01
#define COLOR08_BLACK 0x00
#define COLOR08_WHITE 0xFF
#define COLOR08_RED 0xE0
#define COLOR08_LIME 0x1C
#define COLOR08_BLUE 0x03
#define COLOR08_CYAN 0x1F
#define COLOR08_GRAY 0x92
#define COLOR08_GREEN 0x10
#define COLOR08_MAGENTA 0xE3
#define COLOR08_NAVY 0x02
#define COLOR08_OLIVE 0x90
#define COLOR08_PURPLE 0x82
#define COLOR08_SILVER 0xB6
#define COLOR08_MAROOM 0x80
#define COLOR08_TEAL 0x12
#define COLOR08_YELLOW 0xFC
#define COLOR08_AQUAMARINE 0x7F
#define COLOR08_CRIMSON 0xC0
#define COLOR08_DODGERBLUE 0x13
#define COLOR08_GOLD 0xF8
#define COLOR08_INDIGO 0x22
#define COLOR08_KHAKI 0xFA
#define COLOR08_ORANGE 0xF4
#define COLOR08_ORCHID 0xDD
#define COLOR08_PALEGREEN 0x9E
#define COLOR08_PERU 0xD2
#define COLOR08_PINK 0xF6
#define COLOR08_PLUM 0xD3
#define COLOR08_ROYALBLUE 0x4F
#define COLOR08_SADDLEBROWN 0x89
#define COLOR08_SALMON 0xF1
#define COLOR08_SEAGREEN 0x31
#define COLOR08_SKYBLUE 0x9B
#define COLOR08_SPRING 0x1E
#define COLOR08_TOMATO 0xED
#define COLOR08_TAN 0xD6
#define COLOR08_TURQUOISE 0x5F
#define COLOR08_VIOLET 0xF3
#endif /* COLOR_08_H_ */