1
2
3 package colornames
4
5 import "image/color"
6
7
8 var Map = map[string]color.RGBA{
9 "aliceblue": color.RGBA{0xf0, 0xf8, 0xff, 0xff},
10 "antiquewhite": color.RGBA{0xfa, 0xeb, 0xd7, 0xff},
11 "aqua": color.RGBA{0x00, 0xff, 0xff, 0xff},
12 "aquamarine": color.RGBA{0x7f, 0xff, 0xd4, 0xff},
13 "azure": color.RGBA{0xf0, 0xff, 0xff, 0xff},
14 "beige": color.RGBA{0xf5, 0xf5, 0xdc, 0xff},
15 "bisque": color.RGBA{0xff, 0xe4, 0xc4, 0xff},
16 "black": color.RGBA{0x00, 0x00, 0x00, 0xff},
17 "blanchedalmond": color.RGBA{0xff, 0xeb, 0xcd, 0xff},
18 "blue": color.RGBA{0x00, 0x00, 0xff, 0xff},
19 "blueviolet": color.RGBA{0x8a, 0x2b, 0xe2, 0xff},
20 "brown": color.RGBA{0xa5, 0x2a, 0x2a, 0xff},
21 "burlywood": color.RGBA{0xde, 0xb8, 0x87, 0xff},
22 "cadetblue": color.RGBA{0x5f, 0x9e, 0xa0, 0xff},
23 "chartreuse": color.RGBA{0x7f, 0xff, 0x00, 0xff},
24 "chocolate": color.RGBA{0xd2, 0x69, 0x1e, 0xff},
25 "coral": color.RGBA{0xff, 0x7f, 0x50, 0xff},
26 "cornflowerblue": color.RGBA{0x64, 0x95, 0xed, 0xff},
27 "cornsilk": color.RGBA{0xff, 0xf8, 0xdc, 0xff},
28 "crimson": color.RGBA{0xdc, 0x14, 0x3c, 0xff},
29 "cyan": color.RGBA{0x00, 0xff, 0xff, 0xff},
30 "darkblue": color.RGBA{0x00, 0x00, 0x8b, 0xff},
31 "darkcyan": color.RGBA{0x00, 0x8b, 0x8b, 0xff},
32 "darkgoldenrod": color.RGBA{0xb8, 0x86, 0x0b, 0xff},
33 "darkgray": color.RGBA{0xa9, 0xa9, 0xa9, 0xff},
34 "darkgreen": color.RGBA{0x00, 0x64, 0x00, 0xff},
35 "darkgrey": color.RGBA{0xa9, 0xa9, 0xa9, 0xff},
36 "darkkhaki": color.RGBA{0xbd, 0xb7, 0x6b, 0xff},
37 "darkmagenta": color.RGBA{0x8b, 0x00, 0x8b, 0xff},
38 "darkolivegreen": color.RGBA{0x55, 0x6b, 0x2f, 0xff},
39 "darkorange": color.RGBA{0xff, 0x8c, 0x00, 0xff},
40 "darkorchid": color.RGBA{0x99, 0x32, 0xcc, 0xff},
41 "darkred": color.RGBA{0x8b, 0x00, 0x00, 0xff},
42 "darksalmon": color.RGBA{0xe9, 0x96, 0x7a, 0xff},
43 "darkseagreen": color.RGBA{0x8f, 0xbc, 0x8f, 0xff},
44 "darkslateblue": color.RGBA{0x48, 0x3d, 0x8b, 0xff},
45 "darkslategray": color.RGBA{0x2f, 0x4f, 0x4f, 0xff},
46 "darkslategrey": color.RGBA{0x2f, 0x4f, 0x4f, 0xff},
47 "darkturquoise": color.RGBA{0x00, 0xce, 0xd1, 0xff},
48 "darkviolet": color.RGBA{0x94, 0x00, 0xd3, 0xff},
49 "deeppink": color.RGBA{0xff, 0x14, 0x93, 0xff},
50 "deepskyblue": color.RGBA{0x00, 0xbf, 0xff, 0xff},
51 "dimgray": color.RGBA{0x69, 0x69, 0x69, 0xff},
52 "dimgrey": color.RGBA{0x69, 0x69, 0x69, 0xff},
53 "dodgerblue": color.RGBA{0x1e, 0x90, 0xff, 0xff},
54 "firebrick": color.RGBA{0xb2, 0x22, 0x22, 0xff},
55 "floralwhite": color.RGBA{0xff, 0xfa, 0xf0, 0xff},
56 "forestgreen": color.RGBA{0x22, 0x8b, 0x22, 0xff},
57 "fuchsia": color.RGBA{0xff, 0x00, 0xff, 0xff},
58 "gainsboro": color.RGBA{0xdc, 0xdc, 0xdc, 0xff},
59 "ghostwhite": color.RGBA{0xf8, 0xf8, 0xff, 0xff},
60 "gold": color.RGBA{0xff, 0xd7, 0x00, 0xff},
61 "goldenrod": color.RGBA{0xda, 0xa5, 0x20, 0xff},
62 "gray": color.RGBA{0x80, 0x80, 0x80, 0xff},
63 "green": color.RGBA{0x00, 0x80, 0x00, 0xff},
64 "greenyellow": color.RGBA{0xad, 0xff, 0x2f, 0xff},
65 "grey": color.RGBA{0x80, 0x80, 0x80, 0xff},
66 "honeydew": color.RGBA{0xf0, 0xff, 0xf0, 0xff},
67 "hotpink": color.RGBA{0xff, 0x69, 0xb4, 0xff},
68 "indianred": color.RGBA{0xcd, 0x5c, 0x5c, 0xff},
69 "indigo": color.RGBA{0x4b, 0x00, 0x82, 0xff},
70 "ivory": color.RGBA{0xff, 0xff, 0xf0, 0xff},
71 "khaki": color.RGBA{0xf0, 0xe6, 0x8c, 0xff},
72 "lavender": color.RGBA{0xe6, 0xe6, 0xfa, 0xff},
73 "lavenderblush": color.RGBA{0xff, 0xf0, 0xf5, 0xff},
74 "lawngreen": color.RGBA{0x7c, 0xfc, 0x00, 0xff},
75 "lemonchiffon": color.RGBA{0xff, 0xfa, 0xcd, 0xff},
76 "lightblue": color.RGBA{0xad, 0xd8, 0xe6, 0xff},
77 "lightcoral": color.RGBA{0xf0, 0x80, 0x80, 0xff},
78 "lightcyan": color.RGBA{0xe0, 0xff, 0xff, 0xff},
79 "lightgoldenrodyellow": color.RGBA{0xfa, 0xfa, 0xd2, 0xff},
80 "lightgray": color.RGBA{0xd3, 0xd3, 0xd3, 0xff},
81 "lightgreen": color.RGBA{0x90, 0xee, 0x90, 0xff},
82 "lightgrey": color.RGBA{0xd3, 0xd3, 0xd3, 0xff},
83 "lightpink": color.RGBA{0xff, 0xb6, 0xc1, 0xff},
84 "lightsalmon": color.RGBA{0xff, 0xa0, 0x7a, 0xff},
85 "lightseagreen": color.RGBA{0x20, 0xb2, 0xaa, 0xff},
86 "lightskyblue": color.RGBA{0x87, 0xce, 0xfa, 0xff},
87 "lightslategray": color.RGBA{0x77, 0x88, 0x99, 0xff},
88 "lightslategrey": color.RGBA{0x77, 0x88, 0x99, 0xff},
89 "lightsteelblue": color.RGBA{0xb0, 0xc4, 0xde, 0xff},
90 "lightyellow": color.RGBA{0xff, 0xff, 0xe0, 0xff},
91 "lime": color.RGBA{0x00, 0xff, 0x00, 0xff},
92 "limegreen": color.RGBA{0x32, 0xcd, 0x32, 0xff},
93 "linen": color.RGBA{0xfa, 0xf0, 0xe6, 0xff},
94 "magenta": color.RGBA{0xff, 0x00, 0xff, 0xff},
95 "maroon": color.RGBA{0x80, 0x00, 0x00, 0xff},
96 "mediumaquamarine": color.RGBA{0x66, 0xcd, 0xaa, 0xff},
97 "mediumblue": color.RGBA{0x00, 0x00, 0xcd, 0xff},
98 "mediumorchid": color.RGBA{0xba, 0x55, 0xd3, 0xff},
99 "mediumpurple": color.RGBA{0x93, 0x70, 0xdb, 0xff},
100 "mediumseagreen": color.RGBA{0x3c, 0xb3, 0x71, 0xff},
101 "mediumslateblue": color.RGBA{0x7b, 0x68, 0xee, 0xff},
102 "mediumspringgreen": color.RGBA{0x00, 0xfa, 0x9a, 0xff},
103 "mediumturquoise": color.RGBA{0x48, 0xd1, 0xcc, 0xff},
104 "mediumvioletred": color.RGBA{0xc7, 0x15, 0x85, 0xff},
105 "midnightblue": color.RGBA{0x19, 0x19, 0x70, 0xff},
106 "mintcream": color.RGBA{0xf5, 0xff, 0xfa, 0xff},
107 "mistyrose": color.RGBA{0xff, 0xe4, 0xe1, 0xff},
108 "moccasin": color.RGBA{0xff, 0xe4, 0xb5, 0xff},
109 "navajowhite": color.RGBA{0xff, 0xde, 0xad, 0xff},
110 "navy": color.RGBA{0x00, 0x00, 0x80, 0xff},
111 "oldlace": color.RGBA{0xfd, 0xf5, 0xe6, 0xff},
112 "olive": color.RGBA{0x80, 0x80, 0x00, 0xff},
113 "olivedrab": color.RGBA{0x6b, 0x8e, 0x23, 0xff},
114 "orange": color.RGBA{0xff, 0xa5, 0x00, 0xff},
115 "orangered": color.RGBA{0xff, 0x45, 0x00, 0xff},
116 "orchid": color.RGBA{0xda, 0x70, 0xd6, 0xff},
117 "palegoldenrod": color.RGBA{0xee, 0xe8, 0xaa, 0xff},
118 "palegreen": color.RGBA{0x98, 0xfb, 0x98, 0xff},
119 "paleturquoise": color.RGBA{0xaf, 0xee, 0xee, 0xff},
120 "palevioletred": color.RGBA{0xdb, 0x70, 0x93, 0xff},
121 "papayawhip": color.RGBA{0xff, 0xef, 0xd5, 0xff},
122 "peachpuff": color.RGBA{0xff, 0xda, 0xb9, 0xff},
123 "peru": color.RGBA{0xcd, 0x85, 0x3f, 0xff},
124 "pink": color.RGBA{0xff, 0xc0, 0xcb, 0xff},
125 "plum": color.RGBA{0xdd, 0xa0, 0xdd, 0xff},
126 "powderblue": color.RGBA{0xb0, 0xe0, 0xe6, 0xff},
127 "purple": color.RGBA{0x80, 0x00, 0x80, 0xff},
128 "red": color.RGBA{0xff, 0x00, 0x00, 0xff},
129 "rosybrown": color.RGBA{0xbc, 0x8f, 0x8f, 0xff},
130 "royalblue": color.RGBA{0x41, 0x69, 0xe1, 0xff},
131 "saddlebrown": color.RGBA{0x8b, 0x45, 0x13, 0xff},
132 "salmon": color.RGBA{0xfa, 0x80, 0x72, 0xff},
133 "sandybrown": color.RGBA{0xf4, 0xa4, 0x60, 0xff},
134 "seagreen": color.RGBA{0x2e, 0x8b, 0x57, 0xff},
135 "seashell": color.RGBA{0xff, 0xf5, 0xee, 0xff},
136 "sienna": color.RGBA{0xa0, 0x52, 0x2d, 0xff},
137 "silver": color.RGBA{0xc0, 0xc0, 0xc0, 0xff},
138 "skyblue": color.RGBA{0x87, 0xce, 0xeb, 0xff},
139 "slateblue": color.RGBA{0x6a, 0x5a, 0xcd, 0xff},
140 "slategray": color.RGBA{0x70, 0x80, 0x90, 0xff},
141 "slategrey": color.RGBA{0x70, 0x80, 0x90, 0xff},
142 "snow": color.RGBA{0xff, 0xfa, 0xfa, 0xff},
143 "springgreen": color.RGBA{0x00, 0xff, 0x7f, 0xff},
144 "steelblue": color.RGBA{0x46, 0x82, 0xb4, 0xff},
145 "tan": color.RGBA{0xd2, 0xb4, 0x8c, 0xff},
146 "teal": color.RGBA{0x00, 0x80, 0x80, 0xff},
147 "thistle": color.RGBA{0xd8, 0xbf, 0xd8, 0xff},
148 "tomato": color.RGBA{0xff, 0x63, 0x47, 0xff},
149 "turquoise": color.RGBA{0x40, 0xe0, 0xd0, 0xff},
150 "violet": color.RGBA{0xee, 0x82, 0xee, 0xff},
151 "wheat": color.RGBA{0xf5, 0xde, 0xb3, 0xff},
152 "white": color.RGBA{0xff, 0xff, 0xff, 0xff},
153 "whitesmoke": color.RGBA{0xf5, 0xf5, 0xf5, 0xff},
154 "yellow": color.RGBA{0xff, 0xff, 0x00, 0xff},
155 "yellowgreen": color.RGBA{0x9a, 0xcd, 0x32, 0xff},
156 }
157
158
159 var Names = []string{
160 "aliceblue",
161 "antiquewhite",
162 "aqua",
163 "aquamarine",
164 "azure",
165 "beige",
166 "bisque",
167 "black",
168 "blanchedalmond",
169 "blue",
170 "blueviolet",
171 "brown",
172 "burlywood",
173 "cadetblue",
174 "chartreuse",
175 "chocolate",
176 "coral",
177 "cornflowerblue",
178 "cornsilk",
179 "crimson",
180 "cyan",
181 "darkblue",
182 "darkcyan",
183 "darkgoldenrod",
184 "darkgray",
185 "darkgreen",
186 "darkgrey",
187 "darkkhaki",
188 "darkmagenta",
189 "darkolivegreen",
190 "darkorange",
191 "darkorchid",
192 "darkred",
193 "darksalmon",
194 "darkseagreen",
195 "darkslateblue",
196 "darkslategray",
197 "darkslategrey",
198 "darkturquoise",
199 "darkviolet",
200 "deeppink",
201 "deepskyblue",
202 "dimgray",
203 "dimgrey",
204 "dodgerblue",
205 "firebrick",
206 "floralwhite",
207 "forestgreen",
208 "fuchsia",
209 "gainsboro",
210 "ghostwhite",
211 "gold",
212 "goldenrod",
213 "gray",
214 "green",
215 "greenyellow",
216 "grey",
217 "honeydew",
218 "hotpink",
219 "indianred",
220 "indigo",
221 "ivory",
222 "khaki",
223 "lavender",
224 "lavenderblush",
225 "lawngreen",
226 "lemonchiffon",
227 "lightblue",
228 "lightcoral",
229 "lightcyan",
230 "lightgoldenrodyellow",
231 "lightgray",
232 "lightgreen",
233 "lightgrey",
234 "lightpink",
235 "lightsalmon",
236 "lightseagreen",
237 "lightskyblue",
238 "lightslategray",
239 "lightslategrey",
240 "lightsteelblue",
241 "lightyellow",
242 "lime",
243 "limegreen",
244 "linen",
245 "magenta",
246 "maroon",
247 "mediumaquamarine",
248 "mediumblue",
249 "mediumorchid",
250 "mediumpurple",
251 "mediumseagreen",
252 "mediumslateblue",
253 "mediumspringgreen",
254 "mediumturquoise",
255 "mediumvioletred",
256 "midnightblue",
257 "mintcream",
258 "mistyrose",
259 "moccasin",
260 "navajowhite",
261 "navy",
262 "oldlace",
263 "olive",
264 "olivedrab",
265 "orange",
266 "orangered",
267 "orchid",
268 "palegoldenrod",
269 "palegreen",
270 "paleturquoise",
271 "palevioletred",
272 "papayawhip",
273 "peachpuff",
274 "peru",
275 "pink",
276 "plum",
277 "powderblue",
278 "purple",
279 "red",
280 "rosybrown",
281 "royalblue",
282 "saddlebrown",
283 "salmon",
284 "sandybrown",
285 "seagreen",
286 "seashell",
287 "sienna",
288 "silver",
289 "skyblue",
290 "slateblue",
291 "slategray",
292 "slategrey",
293 "snow",
294 "springgreen",
295 "steelblue",
296 "tan",
297 "teal",
298 "thistle",
299 "tomato",
300 "turquoise",
301 "violet",
302 "wheat",
303 "white",
304 "whitesmoke",
305 "yellow",
306 "yellowgreen",
307 }
308
309 var (
310 Aliceblue = color.RGBA{0xf0, 0xf8, 0xff, 0xff}
311 Antiquewhite = color.RGBA{0xfa, 0xeb, 0xd7, 0xff}
312 Aqua = color.RGBA{0x00, 0xff, 0xff, 0xff}
313 Aquamarine = color.RGBA{0x7f, 0xff, 0xd4, 0xff}
314 Azure = color.RGBA{0xf0, 0xff, 0xff, 0xff}
315 Beige = color.RGBA{0xf5, 0xf5, 0xdc, 0xff}
316 Bisque = color.RGBA{0xff, 0xe4, 0xc4, 0xff}
317 Black = color.RGBA{0x00, 0x00, 0x00, 0xff}
318 Blanchedalmond = color.RGBA{0xff, 0xeb, 0xcd, 0xff}
319 Blue = color.RGBA{0x00, 0x00, 0xff, 0xff}
320 Blueviolet = color.RGBA{0x8a, 0x2b, 0xe2, 0xff}
321 Brown = color.RGBA{0xa5, 0x2a, 0x2a, 0xff}
322 Burlywood = color.RGBA{0xde, 0xb8, 0x87, 0xff}
323 Cadetblue = color.RGBA{0x5f, 0x9e, 0xa0, 0xff}
324 Chartreuse = color.RGBA{0x7f, 0xff, 0x00, 0xff}
325 Chocolate = color.RGBA{0xd2, 0x69, 0x1e, 0xff}
326 Coral = color.RGBA{0xff, 0x7f, 0x50, 0xff}
327 Cornflowerblue = color.RGBA{0x64, 0x95, 0xed, 0xff}
328 Cornsilk = color.RGBA{0xff, 0xf8, 0xdc, 0xff}
329 Crimson = color.RGBA{0xdc, 0x14, 0x3c, 0xff}
330 Cyan = color.RGBA{0x00, 0xff, 0xff, 0xff}
331 Darkblue = color.RGBA{0x00, 0x00, 0x8b, 0xff}
332 Darkcyan = color.RGBA{0x00, 0x8b, 0x8b, 0xff}
333 Darkgoldenrod = color.RGBA{0xb8, 0x86, 0x0b, 0xff}
334 Darkgray = color.RGBA{0xa9, 0xa9, 0xa9, 0xff}
335 Darkgreen = color.RGBA{0x00, 0x64, 0x00, 0xff}
336 Darkgrey = color.RGBA{0xa9, 0xa9, 0xa9, 0xff}
337 Darkkhaki = color.RGBA{0xbd, 0xb7, 0x6b, 0xff}
338 Darkmagenta = color.RGBA{0x8b, 0x00, 0x8b, 0xff}
339 Darkolivegreen = color.RGBA{0x55, 0x6b, 0x2f, 0xff}
340 Darkorange = color.RGBA{0xff, 0x8c, 0x00, 0xff}
341 Darkorchid = color.RGBA{0x99, 0x32, 0xcc, 0xff}
342 Darkred = color.RGBA{0x8b, 0x00, 0x00, 0xff}
343 Darksalmon = color.RGBA{0xe9, 0x96, 0x7a, 0xff}
344 Darkseagreen = color.RGBA{0x8f, 0xbc, 0x8f, 0xff}
345 Darkslateblue = color.RGBA{0x48, 0x3d, 0x8b, 0xff}
346 Darkslategray = color.RGBA{0x2f, 0x4f, 0x4f, 0xff}
347 Darkslategrey = color.RGBA{0x2f, 0x4f, 0x4f, 0xff}
348 Darkturquoise = color.RGBA{0x00, 0xce, 0xd1, 0xff}
349 Darkviolet = color.RGBA{0x94, 0x00, 0xd3, 0xff}
350 Deeppink = color.RGBA{0xff, 0x14, 0x93, 0xff}
351 Deepskyblue = color.RGBA{0x00, 0xbf, 0xff, 0xff}
352 Dimgray = color.RGBA{0x69, 0x69, 0x69, 0xff}
353 Dimgrey = color.RGBA{0x69, 0x69, 0x69, 0xff}
354 Dodgerblue = color.RGBA{0x1e, 0x90, 0xff, 0xff}
355 Firebrick = color.RGBA{0xb2, 0x22, 0x22, 0xff}
356 Floralwhite = color.RGBA{0xff, 0xfa, 0xf0, 0xff}
357 Forestgreen = color.RGBA{0x22, 0x8b, 0x22, 0xff}
358 Fuchsia = color.RGBA{0xff, 0x00, 0xff, 0xff}
359 Gainsboro = color.RGBA{0xdc, 0xdc, 0xdc, 0xff}
360 Ghostwhite = color.RGBA{0xf8, 0xf8, 0xff, 0xff}
361 Gold = color.RGBA{0xff, 0xd7, 0x00, 0xff}
362 Goldenrod = color.RGBA{0xda, 0xa5, 0x20, 0xff}
363 Gray = color.RGBA{0x80, 0x80, 0x80, 0xff}
364 Green = color.RGBA{0x00, 0x80, 0x00, 0xff}
365 Greenyellow = color.RGBA{0xad, 0xff, 0x2f, 0xff}
366 Grey = color.RGBA{0x80, 0x80, 0x80, 0xff}
367 Honeydew = color.RGBA{0xf0, 0xff, 0xf0, 0xff}
368 Hotpink = color.RGBA{0xff, 0x69, 0xb4, 0xff}
369 Indianred = color.RGBA{0xcd, 0x5c, 0x5c, 0xff}
370 Indigo = color.RGBA{0x4b, 0x00, 0x82, 0xff}
371 Ivory = color.RGBA{0xff, 0xff, 0xf0, 0xff}
372 Khaki = color.RGBA{0xf0, 0xe6, 0x8c, 0xff}
373 Lavender = color.RGBA{0xe6, 0xe6, 0xfa, 0xff}
374 Lavenderblush = color.RGBA{0xff, 0xf0, 0xf5, 0xff}
375 Lawngreen = color.RGBA{0x7c, 0xfc, 0x00, 0xff}
376 Lemonchiffon = color.RGBA{0xff, 0xfa, 0xcd, 0xff}
377 Lightblue = color.RGBA{0xad, 0xd8, 0xe6, 0xff}
378 Lightcoral = color.RGBA{0xf0, 0x80, 0x80, 0xff}
379 Lightcyan = color.RGBA{0xe0, 0xff, 0xff, 0xff}
380 Lightgoldenrodyellow = color.RGBA{0xfa, 0xfa, 0xd2, 0xff}
381 Lightgray = color.RGBA{0xd3, 0xd3, 0xd3, 0xff}
382 Lightgreen = color.RGBA{0x90, 0xee, 0x90, 0xff}
383 Lightgrey = color.RGBA{0xd3, 0xd3, 0xd3, 0xff}
384 Lightpink = color.RGBA{0xff, 0xb6, 0xc1, 0xff}
385 Lightsalmon = color.RGBA{0xff, 0xa0, 0x7a, 0xff}
386 Lightseagreen = color.RGBA{0x20, 0xb2, 0xaa, 0xff}
387 Lightskyblue = color.RGBA{0x87, 0xce, 0xfa, 0xff}
388 Lightslategray = color.RGBA{0x77, 0x88, 0x99, 0xff}
389 Lightslategrey = color.RGBA{0x77, 0x88, 0x99, 0xff}
390 Lightsteelblue = color.RGBA{0xb0, 0xc4, 0xde, 0xff}
391 Lightyellow = color.RGBA{0xff, 0xff, 0xe0, 0xff}
392 Lime = color.RGBA{0x00, 0xff, 0x00, 0xff}
393 Limegreen = color.RGBA{0x32, 0xcd, 0x32, 0xff}
394 Linen = color.RGBA{0xfa, 0xf0, 0xe6, 0xff}
395 Magenta = color.RGBA{0xff, 0x00, 0xff, 0xff}
396 Maroon = color.RGBA{0x80, 0x00, 0x00, 0xff}
397 Mediumaquamarine = color.RGBA{0x66, 0xcd, 0xaa, 0xff}
398 Mediumblue = color.RGBA{0x00, 0x00, 0xcd, 0xff}
399 Mediumorchid = color.RGBA{0xba, 0x55, 0xd3, 0xff}
400 Mediumpurple = color.RGBA{0x93, 0x70, 0xdb, 0xff}
401 Mediumseagreen = color.RGBA{0x3c, 0xb3, 0x71, 0xff}
402 Mediumslateblue = color.RGBA{0x7b, 0x68, 0xee, 0xff}
403 Mediumspringgreen = color.RGBA{0x00, 0xfa, 0x9a, 0xff}
404 Mediumturquoise = color.RGBA{0x48, 0xd1, 0xcc, 0xff}
405 Mediumvioletred = color.RGBA{0xc7, 0x15, 0x85, 0xff}
406 Midnightblue = color.RGBA{0x19, 0x19, 0x70, 0xff}
407 Mintcream = color.RGBA{0xf5, 0xff, 0xfa, 0xff}
408 Mistyrose = color.RGBA{0xff, 0xe4, 0xe1, 0xff}
409 Moccasin = color.RGBA{0xff, 0xe4, 0xb5, 0xff}
410 Navajowhite = color.RGBA{0xff, 0xde, 0xad, 0xff}
411 Navy = color.RGBA{0x00, 0x00, 0x80, 0xff}
412 Oldlace = color.RGBA{0xfd, 0xf5, 0xe6, 0xff}
413 Olive = color.RGBA{0x80, 0x80, 0x00, 0xff}
414 Olivedrab = color.RGBA{0x6b, 0x8e, 0x23, 0xff}
415 Orange = color.RGBA{0xff, 0xa5, 0x00, 0xff}
416 Orangered = color.RGBA{0xff, 0x45, 0x00, 0xff}
417 Orchid = color.RGBA{0xda, 0x70, 0xd6, 0xff}
418 Palegoldenrod = color.RGBA{0xee, 0xe8, 0xaa, 0xff}
419 Palegreen = color.RGBA{0x98, 0xfb, 0x98, 0xff}
420 Paleturquoise = color.RGBA{0xaf, 0xee, 0xee, 0xff}
421 Palevioletred = color.RGBA{0xdb, 0x70, 0x93, 0xff}
422 Papayawhip = color.RGBA{0xff, 0xef, 0xd5, 0xff}
423 Peachpuff = color.RGBA{0xff, 0xda, 0xb9, 0xff}
424 Peru = color.RGBA{0xcd, 0x85, 0x3f, 0xff}
425 Pink = color.RGBA{0xff, 0xc0, 0xcb, 0xff}
426 Plum = color.RGBA{0xdd, 0xa0, 0xdd, 0xff}
427 Powderblue = color.RGBA{0xb0, 0xe0, 0xe6, 0xff}
428 Purple = color.RGBA{0x80, 0x00, 0x80, 0xff}
429 Red = color.RGBA{0xff, 0x00, 0x00, 0xff}
430 Rosybrown = color.RGBA{0xbc, 0x8f, 0x8f, 0xff}
431 Royalblue = color.RGBA{0x41, 0x69, 0xe1, 0xff}
432 Saddlebrown = color.RGBA{0x8b, 0x45, 0x13, 0xff}
433 Salmon = color.RGBA{0xfa, 0x80, 0x72, 0xff}
434 Sandybrown = color.RGBA{0xf4, 0xa4, 0x60, 0xff}
435 Seagreen = color.RGBA{0x2e, 0x8b, 0x57, 0xff}
436 Seashell = color.RGBA{0xff, 0xf5, 0xee, 0xff}
437 Sienna = color.RGBA{0xa0, 0x52, 0x2d, 0xff}
438 Silver = color.RGBA{0xc0, 0xc0, 0xc0, 0xff}
439 Skyblue = color.RGBA{0x87, 0xce, 0xeb, 0xff}
440 Slateblue = color.RGBA{0x6a, 0x5a, 0xcd, 0xff}
441 Slategray = color.RGBA{0x70, 0x80, 0x90, 0xff}
442 Slategrey = color.RGBA{0x70, 0x80, 0x90, 0xff}
443 Snow = color.RGBA{0xff, 0xfa, 0xfa, 0xff}
444 Springgreen = color.RGBA{0x00, 0xff, 0x7f, 0xff}
445 Steelblue = color.RGBA{0x46, 0x82, 0xb4, 0xff}
446 Tan = color.RGBA{0xd2, 0xb4, 0x8c, 0xff}
447 Teal = color.RGBA{0x00, 0x80, 0x80, 0xff}
448 Thistle = color.RGBA{0xd8, 0xbf, 0xd8, 0xff}
449 Tomato = color.RGBA{0xff, 0x63, 0x47, 0xff}
450 Turquoise = color.RGBA{0x40, 0xe0, 0xd0, 0xff}
451 Violet = color.RGBA{0xee, 0x82, 0xee, 0xff}
452 Wheat = color.RGBA{0xf5, 0xde, 0xb3, 0xff}
453 White = color.RGBA{0xff, 0xff, 0xff, 0xff}
454 Whitesmoke = color.RGBA{0xf5, 0xf5, 0xf5, 0xff}
455 Yellow = color.RGBA{0xff, 0xff, 0x00, 0xff}
456 Yellowgreen = color.RGBA{0x9a, 0xcd, 0x32, 0xff}
457 )
458
View as plain text