-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolornames.h
167 lines (160 loc) · 9.62 KB
/
colornames.h
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
//***************************************************************************
// NARS2000 -- Extern Variables
//***************************************************************************
/***************************************************************************
NARS2000 -- An Experimental APL Interpreter
Copyright (C) 2006-2009 Sudley Place Software
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***************************************************************************/
#define DEF_SCN_BLACK RGB ( 0, 0, 0)
#define DEF_SCN_DIMGRAY RGB (105, 105, 105)
#define DEF_SCN_GRAY RGB (128, 128, 128)
#define DEF_SCN_DARKGRAY RGB (169, 169, 169)
#define DEF_SCN_SILVER RGB (192, 192, 192)
#define DEF_SCN_LIGHTGRAY RGB (211, 211, 211)
#define DEF_SCN_GAINSBORO RGB (220, 220, 220)
#define DEF_SCN_WHITESMOKE RGB (245, 245, 245)
#define DEF_SCN_WHITE RGB (255, 255, 255)
#define DEF_SCN_SNOW RGB (255, 250, 250)
#define DEF_SCN_ROSYBROWN RGB (188, 143, 143)
#define DEF_SCN_LIGHTCORAL RGB (240, 128, 128)
#define DEF_SCN_INDIANRED RGB (205, 92, 92)
#define DEF_SCN_BROWN RGB (165, 42, 42)
#define DEF_SCN_FIREBRICK RGB (178, 34, 34)
#define DEF_SCN_MAROON RGB (128, 0, 0)
#define DEF_SCN_DARKRED RGB (139, 0, 0)
#define DEF_SCN_RED RGB (255, 0, 0)
#define DEF_SCN_MISTYROSE RGB (255, 228, 225)
#define DEF_SCN_SALMON RGB (250, 128, 114)
#define DEF_SCN_TOMATO RGB (255, 99, 71)
#define DEF_SCN_DARKSALMON RGB (233, 150, 122)
#define DEF_SCN_CORAL RGB (255, 127, 80)
#define DEF_SCN_LIGHTSALMON RGB (255, 160, 122)
#define DEF_SCN_ORANGERED RGB (255, 69, 0)
#define DEF_SCN_SIENNA RGB (160, 82, 45)
#define DEF_SCN_SEASHELL RGB (255, 245, 238)
#define DEF_SCN_CHOCOLATE RGB (210, 105, 30)
#define DEF_SCN_SADDLEBROWN RGB (139, 69, 19)
#define DEF_SCN_PEACHPUFF RGB (255, 218, 185)
#define DEF_SCN_SANDYBROWN RGB (244, 164, 96)
#define DEF_SCN_LINEN RGB (250, 240, 230)
#define DEF_SCN_PERU RGB (205, 133, 63)
#define DEF_SCN_BISQUE RGB (255, 228, 196)
#define DEF_SCN_DARKORANGE RGB (255, 140, 0)
#define DEF_SCN_ANTIQUEWHITE RGB (250, 235, 215)
#define DEF_SCN_TAN RGB (210, 180, 140)
#define DEF_SCN_BURLYWOOD RGB (222, 184, 135)
#define DEF_SCN_NAVAJOWHITE RGB (255, 222, 173)
#define DEF_SCN_PAPAYAWHIP RGB (255, 239, 213)
#define DEF_SCN_BLANCHEDALMOND RGB (255, 235, 205)
#define DEF_SCN_MOCCASIN RGB (255, 228, 181)
#define DEF_SCN_FLORALWHITE RGB (255, 250, 240)
#define DEF_SCN_OLDLACE RGB (253, 245, 230)
#define DEF_SCN_WHEAT RGB (245, 222, 179)
#define DEF_SCN_ORANGE RGB (255, 165, 0)
#define DEF_SCN_GOLDENROD RGB (218, 165, 32)
#define DEF_SCN_DARKGOLDENROD RGB (184, 134, 11)
#define DEF_SCN_CORNSILK RGB (255, 248, 220)
#define DEF_SCN_GOLD RGB (255, 215, 0)
#define DEF_SCN_LEMONCHIFFON RGB (255, 250, 205)
#define DEF_SCN_KHAKI RGB (240, 230, 140)
#define DEF_SCN_PALEGOLDENROD RGB (238, 232, 170)
#define DEF_SCN_DARKKHAKI RGB (189, 183, 107)
#define DEF_SCN_IVORY RGB (255, 255, 240)
#define DEF_SCN_BEIGE RGB (245, 245, 220)
#define DEF_SCN_LIGHTYELLOW RGB (255, 255, 224)
#define DEF_SCN_LIGHTGOLDENRODYELLOW RGB (250, 250, 210)
#define DEF_SCN_OLIVE RGB (128, 128, 0)
#define DEF_SCN_YELLOW RGB (255, 255, 0)
#define DEF_SCN_OLIVEDRAB RGB (107, 142, 35)
#define DEF_SCN_YELLOWGREEN RGB (154, 205, 50)
#define DEF_SCN_DARKOLIVEGREEN RGB ( 85, 107, 47)
#define DEF_SCN_GREENYELLOW RGB (173, 255, 47)
#define DEF_SCN_LAWNGREEN RGB (124, 252, 0)
#define DEF_SCN_CHARTREUSE RGB (127, 255, 0)
#define DEF_SCN_HONEYDEW RGB (240, 255, 240)
#define DEF_SCN_DARKSEAGREEN RGB (143, 188, 143)
#define DEF_SCN_LIGHTGREEN RGB (144, 238, 144)
#define DEF_SCN_PALEGREEN RGB (152, 251, 152)
#define DEF_SCN_FORESTGREEN RGB ( 34, 139, 34)
#define DEF_SCN_LIMEGREEN RGB ( 50, 205, 50)
#define DEF_SCN_DARKGREEN RGB ( 0, 100, 0)
#define DEF_SCN_GREEN RGB ( 0, 128, 0)
#define DEF_SCN_LIME RGB ( 0, 255, 0)
#define DEF_SCN_MEDIUMSEAGREEN RGB ( 60, 179, 113)
#define DEF_SCN_SEAGREEN RGB ( 46, 139, 87)
#define DEF_SCN_MINTCREAM RGB (245, 255, 250)
#define DEF_SCN_SPRINGGREEN RGB ( 0, 255, 127)
#define DEF_SCN_MEDIUMSPRINGGREEN RGB ( 0, 250, 154)
#define DEF_SCN_MEDIUMAQUAMARINE RGB (102, 205, 170)
#define DEF_SCN_AQUAMARINE RGB (127, 255, 212)
#define DEF_SCN_TURQUOISE RGB ( 64, 224, 208)
#define DEF_SCN_LIGHTSEAGREEN RGB ( 32, 178, 170)
#define DEF_SCN_MEDIUMTURQUOISE RGB ( 72, 209, 204)
#define DEF_SCN_AZURE RGB (240, 255, 255)
#define DEF_SCN_LIGHTCYAN RGB (224, 255, 255)
#define DEF_SCN_PALETURQUOISE RGB (175, 238, 238)
#define DEF_SCN_DARKSLATEGRAY RGB ( 47, 79, 79)
#define DEF_SCN_TEAL RGB ( 0, 128, 128)
#define DEF_SCN_DARKCYAN RGB ( 0, 139, 139)
#define DEF_SCN_DARKTURQUOISE RGB ( 0, 206, 209)
#define DEF_SCN_CYAN RGB ( 0, 255, 255)
#define DEF_SCN_AQUA RGB ( 0, 255, 255)
#define DEF_SCN_CADETBLUE RGB ( 95, 158, 160)
#define DEF_SCN_POWDERBLUE RGB (176, 224, 230)
#define DEF_SCN_LIGHTBLUE RGB (173, 216, 230)
#define DEF_SCN_DEEPSKYBLUE RGB ( 0, 191, 255)
#define DEF_SCN_SKYBLUE RGB (135, 206, 235)
#define DEF_SCN_LIGHTSKYBLUE RGB (135, 206, 250)
#define DEF_SCN_ALICEBLUE RGB (240, 248, 255)
#define DEF_SCN_STEELBLUE RGB ( 70, 130, 180)
#define DEF_SCN_DODGERBLUE RGB ( 30, 144, 255)
#define DEF_SCN_SLATEGRAY RGB (112, 128, 144)
#define DEF_SCN_LIGHTSLATEGRAY RGB (119, 136, 153)
#define DEF_SCN_LIGHTSTEELBLUE RGB (176, 196, 222)
#define DEF_SCN_CORNFLOWERBLUE RGB (100, 149, 237)
#define DEF_SCN_ROYALBLUE RGB ( 65, 105, 225)
#define DEF_SCN_GHOSTWHITE RGB (248, 248, 255)
#define DEF_SCN_LAVENDER RGB (230, 230, 250)
#define DEF_SCN_MIDNIGHTBLUE RGB ( 25, 25, 112)
#define DEF_SCN_NAVY RGB ( 0, 0, 128)
#define DEF_SCN_DARKBLUE RGB ( 0, 0, 139)
#define DEF_SCN_MEDIUMBLUE RGB ( 0, 0, 205)
#define DEF_SCN_BLUE RGB ( 0, 0, 255)
#define DEF_SCN_DARKSLATEBLUE RGB ( 72, 61, 139)
#define DEF_SCN_SLATEBLUE RGB (106, 90, 205)
#define DEF_SCN_MEDIUMSLATEBLUE RGB (123, 104, 238)
#define DEF_SCN_MEDIUMPURPLE RGB (147, 112, 219)
#define DEF_SCN_BLUEVIOLET RGB (138, 43, 226)
#define DEF_SCN_INDIGO RGB ( 75, 0, 130)
#define DEF_SCN_DARKORCHID RGB (153, 50, 204)
#define DEF_SCN_DARKVIOLET RGB (148, 0, 211)
#define DEF_SCN_MEDIUMORCHID RGB (186, 85, 211)
#define DEF_SCN_THISTLE RGB (216, 191, 216)
#define DEF_SCN_PLUM RGB (221, 160, 221)
#define DEF_SCN_VIOLET RGB (238, 130, 238)
#define DEF_SCN_PURPLE RGB (128, 0, 128)
#define DEF_SCN_DARKMAGENTA RGB (139, 0, 139)
#define DEF_SCN_FUCHSIA RGB (255, 0, 255)
#define DEF_SCN_MAGENTA RGB (255, 0, 255)
#define DEF_SCN_ORCHID RGB (218, 112, 214)
#define DEF_SCN_MEDIUMVIOLETRED RGB (199, 21, 133)
#define DEF_SCN_DEEPPINK RGB (255, 20, 147)
#define DEF_SCN_HOTPINK RGB (255, 105, 180)
#define DEF_SCN_LAVENDERBLUSH RGB (255, 240, 245)
#define DEF_SCN_PALEVIOLETRED RGB (219, 112, 147)
#define DEF_SCN_CRIMSON RGB (220, 20, 60)
#define DEF_SCN_PINK RGB (255, 192, 203)
#define DEF_SCN_LIGHTPINK RGB (255, 182, 193)
//***************************************************************************
// End of File: colornames.h
//***************************************************************************