Lines Matching refs:Color

1 Color {
13 *black { ^Color.new(0.0, 0.0, 0.0) }
14 *white { ^Color.new(1.0, 1.0, 1.0) }
15 *red { arg val = 1.0, alpha = 1.0; ^Color.new(min(1,val), max(val-1,0), max(val-1,0), alpha) }
16 *green { arg val = 1.0, alpha = 1.0; ^Color.new(max(val-1,0), min(1,val), max(val-1,0), alpha) }
17 *blue { arg val = 1.0, alpha = 1.0; ^Color.new(max(val-1,0), max(val-1,0), min(1,val), alpha) }
18 *cyan { arg val = 1.0, alpha = 1.0; ^Color.new(max(val-1,0), min(1,val), min(1,val), alpha) }
19 *magenta { arg val = 1.0, alpha = 1.0; ^Color.new(min(1,val), max(val-1,0), min(1,val), alpha) }
20 *yellow { arg val = 1.0, alpha = 1.0; ^Color.new(min(1,val), min(1,val), max(val-1,0), alpha) }
21 *clear { ^Color.new(0.0, 0.0, 0.0, 0.0) }
23 ^Color.new(grey, grey, grey, alpha);
27 ^Color.grey(gray, alpha);
30 *rand { arg lo=0.3,hi=0.9; ^Color.new(rrand(lo,hi),rrand(lo,hi),rrand(lo,hi)) }
41 ^Color.new(red * alpha, green * alpha, blue * alpha, 1.0)
44 ^Color.fromArray(blend(this.asArray, that.asArray, blend));
47 ^Color.new(
55 ^Color.fromArray([red, green, blue].round(val) ++ alpha)
59 ^Color.new(1.0 - red, 1.0 - green, 1.0 - blue, alpha)
63 ^Color.fromArray(blend(vals, vals * this.asArray, opacity) ++ alpha)
67 ^Color.fromArray(blend(vals, ((this.asArray + d) / vals).min(1.0), opacity) ++ alpha)
71 ^Color.fromArray(blend(vals, (this.asArray - vals).max(0.0), opacity) ++ alpha)
75 ^Color.fromArray(blend(vals, (vals + this.asArray).min(1.0), opacity) ++ alpha)
79 ^Color.fromArray(blend(vals, abs(vals - this.asArray), opacity) ++ alpha)
83 ^Color.fromArray(blend(vals, (1-vals) * (1-this.asArray), opacity) ++ alpha)
87 ^Color.fromArray(blend(vals, max(vals, this.asArray), opacity) ++ alpha)
91 ^Color.fromArray(blend(vals, min(vals, this.asArray), opacity) ++ alpha)
97 ^Color.hsv(blend(f[0], b[0], blend), b[1], b[2], alpha)
103 ^Color.hsv(b[0], blend(f[1], b[1], blend), b[2], alpha)
109 ^Color.hsv(b[0], b[1], blend(f[2], b[2], blend), alpha)
203 alice blue: Color.new255(240, 248, 255),
204 AliceBlue: Color.new255(240, 248, 255),
205 antique white: Color.new255(250, 235, 215),
206 AntiqueWhite: Color.new255(250, 235, 215),
207 AntiqueWhite1: Color.new255(255, 239, 219),
208 AntiqueWhite2: Color.new255(238, 223, 204),
209 AntiqueWhite3: Color.new255(205, 192, 176),
210 AntiqueWhite4: Color.new255(139, 131, 120),
211 aquamarine: Color.new255(127, 255, 212),
212 aquamarine1: Color.new255(127, 255, 212),
213 aquamarine2: Color.new255(118, 238, 198),
214 aquamarine3: Color.new255(102, 205, 170),
215 aquamarine4: Color.new255(69, 139, 116),
216 azure: Color.new255(240, 255, 255),
217 azure1: Color.new255(240, 255, 255),
218 azure2: Color.new255(224, 238, 238),
219 azure3: Color.new255(193, 205, 205),
220 azure4: Color.new255(131, 139, 139),
221 beige: Color.new255(245, 245, 220),
222 bisque: Color.new255(255, 228, 196),
223 bisque1: Color.new255(255, 228, 196),
224 bisque2: Color.new255(238, 213, 183),
225 bisque3: Color.new255(205, 183, 158),
226 bisque4: Color.new255(139, 125, 107),
227 black: Color.new255(0, 0, 0),
228 blanched almond: Color.new255(255, 235, 205),
229 BlanchedAlmond: Color.new255(255, 235, 205),
230 blue: Color.new255(0, 0, 255),
231 blue violet: Color.new255(138, 43, 226),
232 blue1: Color.new255(0, 0, 255),
233 blue2: Color.new255(0, 0, 238),
234 blue3: Color.new255(0, 0, 205),
235 blue4: Color.new255(0, 0, 139),
236 BlueViolet: Color.new255(138, 43, 226),
237 brown: Color.new255(165, 42, 42),
238 brown1: Color.new255(255, 64, 64),
239 brown2: Color.new255(238, 59, 59),
240 brown3: Color.new255(205, 51, 51),
241 brown4: Color.new255(139, 35, 35),
242 burlywood: Color.new255(222, 184, 135),
243 burlywood1: Color.new255(255, 211, 155),
244 burlywood2: Color.new255(238, 197, 145),
245 burlywood3: Color.new255(205, 170, 125),
246 burlywood4: Color.new255(139, 115, 85),
247 cadet blue: Color.new255(95, 158, 160),
248 CadetBlue: Color.new255(95, 158, 160),
249 CadetBlue1: Color.new255(152, 245, 255),
250 CadetBlue2: Color.new255(142, 229, 238),
251 CadetBlue3: Color.new255(122, 197, 205),
252 CadetBlue4: Color.new255(83, 134, 139),
253 chartreuse: Color.new255(127, 255, 0),
254 chartreuse1: Color.new255(127, 255, 0),
255 chartreuse2: Color.new255(118, 238, 0),
256 chartreuse3: Color.new255(102, 205, 0),
257 chartreuse4: Color.new255(69, 139, 0),
258 chocolate: Color.new255(210, 105, 30),
259 chocolate1: Color.new255(255, 127, 36),
260 chocolate2: Color.new255(238, 118, 33),
261 chocolate3: Color.new255(205, 102, 29),
262 chocolate4: Color.new255(139, 69, 19),
263 coral: Color.new255(255, 127, 80),
264 coral1: Color.new255(255, 114, 86),
265 coral2: Color.new255(238, 106, 80),
266 coral3: Color.new255(205, 91, 69),
267 coral4: Color.new255(139, 62, 47),
268 cornflower blue: Color.new255(100, 149, 237),
269 CornflowerBlue: Color.new255(100, 149, 237),
270 cornsilk: Color.new255(255, 248, 220),
271 cornsilk1: Color.new255(255, 248, 220),
272 cornsilk2: Color.new255(238, 232, 205),
273 cornsilk3: Color.new255(205, 200, 177),
274 cornsilk4: Color.new255(139, 136, 120),
275 cyan: Color.new255(0, 255, 255),
276 cyan1: Color.new255(0, 255, 255),
277 cyan2: Color.new255(0, 238, 238),
278 cyan3: Color.new255(0, 205, 205),
279 cyan4: Color.new255(0, 139, 139),
280 dark goldenrod: Color.new255(184, 134, 11),
281 dark green: Color.new255(0, 100, 0),
282 dark khaki: Color.new255(189, 183, 107),
283 dark olive green: Color.new255(85, 107, 47),
284 dark orange: Color.new255(255, 140, 0),
285 dark orchid: Color.new255(153, 50, 204),
286 dark salmon: Color.new255(233, 150, 122),
287 dark sea green: Color.new255(143, 188, 143),
288 dark slate blue: Color.new255(72, 61, 139),
289 dark slate gray: Color.new255(47, 79, 79),
290 dark slate grey: Color.new255(47, 79, 79),
291 dark turquoise: Color.new255(0, 206, 209),
292 dark violet: Color.new255(148, 0, 211),
293 DarkGoldenrod: Color.new255(184, 134, 11),
294 DarkGoldenrod1: Color.new255(255, 185, 15),
295 DarkGoldenrod2: Color.new255(238, 173, 14),
296 DarkGoldenrod3: Color.new255(205, 149, 12),
297 DarkGoldenrod4: Color.new255(139, 101, 8),
298 DarkGreen: Color.new255(0, 100, 0),
299 DarkKhaki: Color.new255(189, 183, 107),
300 DarkOliveGreen: Color.new255(85, 107, 47),
301 DarkOliveGreen1: Color.new255(202, 255, 112),
302 DarkOliveGreen2: Color.new255(188, 238, 104),
303 DarkOliveGreen3: Color.new255(162, 205, 90),
304 DarkOliveGreen4: Color.new255(110, 139, 61),
305 DarkOrange: Color.new255(255, 140, 0),
306 DarkOrange1: Color.new255(255, 127, 0),
307 DarkOrange2: Color.new255(238, 118, 0),
308 DarkOrange3: Color.new255(205, 102, 0),
309 DarkOrange4: Color.new255(139, 69, 0),
310 DarkOrchid: Color.new255(153, 50, 204),
311 DarkOrchid1: Color.new255(191, 62, 255),
312 DarkOrchid2: Color.new255(178, 58, 238),
313 DarkOrchid3: Color.new255(154, 50, 205),
314 DarkOrchid4: Color.new255(104, 34, 139),
315 DarkSalmon: Color.new255(233, 150, 122),
316 DarkSeaGreen: Color.new255(143, 188, 143),
317 DarkSeaGreen1: Color.new255(193, 255, 193),
318 DarkSeaGreen2: Color.new255(180, 238, 180),
319 DarkSeaGreen3: Color.new255(155, 205, 155),
320 DarkSeaGreen4: Color.new255(105, 139, 105),
321 DarkSlateBlue: Color.new255(72, 61, 139),
322 DarkSlateGray: Color.new255(47, 79, 79),
323 DarkSlateGray1: Color.new255(151, 255, 255),
324 DarkSlateGray2: Color.new255(141, 238, 238),
325 DarkSlateGray3: Color.new255(121, 205, 205),
326 DarkSlateGray4: Color.new255(82, 139, 139),
327 DarkSlateGrey: Color.new255(47, 79, 79),
328 DarkTurquoise: Color.new255(0, 206, 209),
329 DarkViolet: Color.new255(148, 0, 211),
330 deep pink: Color.new255(255, 20, 147),
331 deep sky blue: Color.new255(0, 191, 255),
332 DeepPink: Color.new255(255, 20, 147),
333 DeepPink1: Color.new255(255, 20, 147),
334 DeepPink2: Color.new255(238, 18, 137),
335 DeepPink3: Color.new255(205, 16, 118),
336 DeepPink4: Color.new255(139, 10, 80),
337 DeepSkyBlue: Color.new255(0, 191, 255),
338 DeepSkyBlue1: Color.new255(0, 191, 255),
339 DeepSkyBlue2: Color.new255(0, 178, 238),
340 DeepSkyBlue3: Color.new255(0, 154, 205),
341 DeepSkyBlue4: Color.new255(0, 104, 139),
342 dim gray: Color.new255(105, 105, 105),
343 dim grey: Color.new255(105, 105, 105),
344 DimGray: Color.new255(105, 105, 105),
345 DimGrey: Color.new255(105, 105, 105),
346 dodger blue: Color.new255(30, 144, 255),
347 DodgerBlue: Color.new255(30, 144, 255),
348 DodgerBlue1: Color.new255(30, 144, 255),
349 DodgerBlue2: Color.new255(28, 134, 238),
350 DodgerBlue3: Color.new255(24, 116, 205),
351 DodgerBlue4: Color.new255(16, 78, 139),
352 firebrick: Color.new255(178, 34, 34),
353 firebrick1: Color.new255(255, 48, 48),
354 firebrick2: Color.new255(238, 44, 44),
355 firebrick3: Color.new255(205, 38, 38),
356 firebrick4: Color.new255(139, 26, 26),
357 floral white: Color.new255(255, 250, 240),
358 FloralWhite: Color.new255(255, 250, 240),
359 forest green: Color.new255(34, 139, 34),
360 ForestGreen: Color.new255(34, 139, 34),
361 gainsboro: Color.new255(220, 220, 220),
362 ghost white: Color.new255(248, 248, 255),
363 GhostWhite: Color.new255(248, 248, 255),
364 gold: Color.new255(255, 215, 0),
365 gold1: Color.new255(255, 215, 0),
366 gold2: Color.new255(238, 201, 0),
367 gold3: Color.new255(205, 173, 0),
368 gold4: Color.new255(139, 117, 0),
369 goldenrod: Color.new255(218, 165, 32),
370 goldenrod1: Color.new255(255, 193, 37),
371 goldenrod2: Color.new255(238, 180, 34),
372 goldenrod3: Color.new255(205, 155, 29),
373 goldenrod4: Color.new255(139, 105, 20),
374 gray: Color.new255(190, 190, 190),
375 gray0: Color.new255(0, 0, 0),
376 gray1: Color.new255(3, 3, 3),
377 gray10: Color.new255(26, 26, 26),
378 gray100: Color.new255(255, 255, 255),
379 gray11: Color.new255(28, 28, 28),
380 gray12: Color.new255(31, 31, 31),
381 gray13: Color.new255(33, 33, 33),
382 gray14: Color.new255(36, 36, 36),
383 gray15: Color.new255(38, 38, 38),
384 gray16: Color.new255(41, 41, 41),
385 gray17: Color.new255(43, 43, 43),
386 gray18: Color.new255(46, 46, 46),
387 gray19: Color.new255(48, 48, 48),
388 gray2: Color.new255(5, 5, 5),
389 gray20: Color.new255(51, 51, 51),
390 gray21: Color.new255(54, 54, 54),
391 gray22: Color.new255(56, 56, 56),
392 gray23: Color.new255(59, 59, 59),
393 gray24: Color.new255(61, 61, 61),
394 gray25: Color.new255(64, 64, 64),
395 gray26: Color.new255(66, 66, 66),
396 gray27: Color.new255(69, 69, 69),
397 gray28: Color.new255(71, 71, 71),
398 gray29: Color.new255(74, 74, 74),
399 gray3: Color.new255(8, 8, 8),
400 gray30: Color.new255(77, 77, 77),
401 gray31: Color.new255(79, 79, 79),
402 gray32: Color.new255(82, 82, 82),
403 gray33: Color.new255(84, 84, 84),
404 gray34: Color.new255(87, 87, 87),
405 gray35: Color.new255(89, 89, 89),
406 gray36: Color.new255(92, 92, 92),
407 gray37: Color.new255(94, 94, 94),
408 gray38: Color.new255(97, 97, 97),
409 gray39: Color.new255(99, 99, 99),
410 gray4: Color.new255(10, 10, 10),
411 gray40: Color.new255(102, 102, 102),
412 gray41: Color.new255(105, 105, 105),
413 gray42: Color.new255(107, 107, 107),
414 gray43: Color.new255(110, 110, 110),
415 gray44: Color.new255(112, 112, 112),
416 gray45: Color.new255(115, 115, 115),
417 gray46: Color.new255(117, 117, 117),
418 gray47: Color.new255(120, 120, 120),
419 gray48: Color.new255(122, 122, 122),
420 gray49: Color.new255(125, 125, 125),
421 gray5: Color.new255(13, 13, 13),
422 gray50: Color.new255(127, 127, 127),
423 gray51: Color.new255(130, 130, 130),
424 gray52: Color.new255(133, 133, 133),
425 gray53: Color.new255(135, 135, 135),
426 gray54: Color.new255(138, 138, 138),
427 gray55: Color.new255(140, 140, 140),
428 gray56: Color.new255(143, 143, 143),
429 gray57: Color.new255(145, 145, 145),
430 gray58: Color.new255(148, 148, 148),
431 gray59: Color.new255(150, 150, 150),
432 gray6: Color.new255(15, 15, 15),
433 gray60: Color.new255(153, 153, 153),
434 gray61: Color.new255(156, 156, 156),
435 gray62: Color.new255(158, 158, 158),
436 gray63: Color.new255(161, 161, 161),
437 gray64: Color.new255(163, 163, 163),
438 gray65: Color.new255(166, 166, 166),
439 gray66: Color.new255(168, 168, 168),
440 gray67: Color.new255(171, 171, 171),
441 gray68: Color.new255(173, 173, 173),
442 gray69: Color.new255(176, 176, 176),
443 gray7: Color.new255(18, 18, 18),
444 gray70: Color.new255(179, 179, 179),
445 gray71: Color.new255(181, 181, 181),
446 gray72: Color.new255(184, 184, 184),
447 gray73: Color.new255(186, 186, 186),
448 gray74: Color.new255(189, 189, 189),
449 gray75: Color.new255(191, 191, 191),
450 gray76: Color.new255(194, 194, 194),
451 gray77: Color.new255(196, 196, 196),
452 gray78: Color.new255(199, 199, 199),
453 gray79: Color.new255(201, 201, 201),
454 gray8: Color.new255(20, 20, 20),
455 gray80: Color.new255(204, 204, 204),
456 gray81: Color.new255(207, 207, 207),
457 gray82: Color.new255(209, 209, 209),
458 gray83: Color.new255(212, 212, 212),
459 gray84: Color.new255(214, 214, 214),
460 gray85: Color.new255(217, 217, 217),
461 gray86: Color.new255(219, 219, 219),
462 gray87: Color.new255(222, 222, 222),
463 gray88: Color.new255(224, 224, 224),
464 gray89: Color.new255(227, 227, 227),
465 gray9: Color.new255(23, 23, 23),
466 gray90: Color.new255(229, 229, 229),
467 gray91: Color.new255(232, 232, 232),
468 gray92: Color.new255(235, 235, 235),
469 gray93: Color.new255(237, 237, 237),
470 gray94: Color.new255(240, 240, 240),
471 gray95: Color.new255(242, 242, 242),
472 gray96: Color.new255(245, 245, 245),
473 gray97: Color.new255(247, 247, 247),
474 gray98: Color.new255(250, 250, 250),
475 gray99: Color.new255(252, 252, 252),
476 green: Color.new255(0, 255, 0),
477 green yellow: Color.new255(173, 255, 47),
478 green1: Color.new255(0, 255, 0),
479 green2: Color.new255(0, 238, 0),
480 green3: Color.new255(0, 205, 0),
481 green4: Color.new255(0, 139, 0),
482 GreenYellow: Color.new255(173, 255, 47),
483 grey: Color.new255(190, 190, 190),
484 grey0: Color.new255(0, 0, 0),
485 grey1: Color.new255(3, 3, 3),
486 grey10: Color.new255(26, 26, 26),
487 grey100: Color.new255(255, 255, 255),
488 grey11: Color.new255(28, 28, 28),
489 grey12: Color.new255(31, 31, 31),
490 grey13: Color.new255(33, 33, 33),
491 grey14: Color.new255(36, 36, 36),
492 grey15: Color.new255(38, 38, 38),
493 grey16: Color.new255(41, 41, 41),
494 grey17: Color.new255(43, 43, 43),
495 grey18: Color.new255(46, 46, 46),
496 grey19: Color.new255(48, 48, 48),
497 grey2: Color.new255(5, 5, 5),
498 grey20: Color.new255(51, 51, 51),
499 grey21: Color.new255(54, 54, 54),
500 grey22: Color.new255(56, 56, 56),
501 grey23: Color.new255(59, 59, 59),
502 grey24: Color.new255(61, 61, 61),
503 grey25: Color.new255(64, 64, 64),
504 grey26: Color.new255(66, 66, 66),
505 grey27: Color.new255(69, 69, 69),
506 grey28: Color.new255(71, 71, 71),
507 grey29: Color.new255(74, 74, 74),
508 grey3: Color.new255(8, 8, 8),
509 grey30: Color.new255(77, 77, 77),
510 grey31: Color.new255(79, 79, 79),
511 grey32: Color.new255(82, 82, 82),
512 grey33: Color.new255(84, 84, 84),
513 grey34: Color.new255(87, 87, 87),
514 grey35: Color.new255(89, 89, 89),
515 grey36: Color.new255(92, 92, 92),
516 grey37: Color.new255(94, 94, 94),
517 grey38: Color.new255(97, 97, 97),
518 grey39: Color.new255(99, 99, 99),
519 grey4: Color.new255(10, 10, 10),
520 grey40: Color.new255(102, 102, 102),
521 grey41: Color.new255(105, 105, 105),
522 grey42: Color.new255(107, 107, 107),
523 grey43: Color.new255(110, 110, 110),
524 grey44: Color.new255(112, 112, 112),
525 grey45: Color.new255(115, 115, 115),
526 grey46: Color.new255(117, 117, 117),
527 grey47: Color.new255(120, 120, 120),
528 grey48: Color.new255(122, 122, 122),
529 grey49: Color.new255(125, 125, 125),
530 grey5: Color.new255(13, 13, 13),
531 grey50: Color.new255(127, 127, 127),
532 grey51: Color.new255(130, 130, 130),
533 grey52: Color.new255(133, 133, 133),
534 grey53: Color.new255(135, 135, 135),
535 grey54: Color.new255(138, 138, 138),
536 grey55: Color.new255(140, 140, 140),
537 grey56: Color.new255(143, 143, 143),
538 grey57: Color.new255(145, 145, 145),
539 grey58: Color.new255(148, 148, 148),
540 grey59: Color.new255(150, 150, 150),
541 grey6: Color.new255(15, 15, 15),
542 grey60: Color.new255(153, 153, 153),
543 grey61: Color.new255(156, 156, 156),
544 grey62: Color.new255(158, 158, 158),
545 grey63: Color.new255(161, 161, 161),
546 grey64: Color.new255(163, 163, 163),
547 grey65: Color.new255(166, 166, 166),
548 grey66: Color.new255(168, 168, 168),
549 grey67: Color.new255(171, 171, 171),
550 grey68: Color.new255(173, 173, 173),
551 grey69: Color.new255(176, 176, 176),
552 grey7: Color.new255(18, 18, 18),
553 grey70: Color.new255(179, 179, 179),
554 grey71: Color.new255(181, 181, 181),
555 grey72: Color.new255(184, 184, 184),
556 grey73: Color.new255(186, 186, 186),
557 grey74: Color.new255(189, 189, 189),
558 grey75: Color.new255(191, 191, 191),
559 grey76: Color.new255(194, 194, 194),
560 grey77: Color.new255(196, 196, 196),
561 grey78: Color.new255(199, 199, 199),
562 grey79: Color.new255(201, 201, 201),
563 grey8: Color.new255(20, 20, 20),
564 grey80: Color.new255(204, 204, 204),
565 grey81: Color.new255(207, 207, 207),
566 grey82: Color.new255(209, 209, 209),
567 grey83: Color.new255(212, 212, 212),
568 grey84: Color.new255(214, 214, 214),
569 grey85: Color.new255(217, 217, 217),
570 grey86: Color.new255(219, 219, 219),
571 grey87: Color.new255(222, 222, 222),
572 grey88: Color.new255(224, 224, 224),
573 grey89: Color.new255(227, 227, 227),
574 grey9: Color.new255(23, 23, 23),
575 grey90: Color.new255(229, 229, 229),
576 grey91: Color.new255(232, 232, 232),
577 grey92: Color.new255(235, 235, 235),
578 grey93: Color.new255(237, 237, 237),
579 grey94: Color.new255(240, 240, 240),
580 grey95: Color.new255(242, 242, 242),
581 grey96: Color.new255(245, 245, 245),
582 grey97: Color.new255(247, 247, 247),
583 grey98: Color.new255(250, 250, 250),
584 grey99: Color.new255(252, 252, 252),
585 honeydew: Color.new255(240, 255, 240),
586 honeydew1: Color.new255(240, 255, 240),
587 honeydew2: Color.new255(224, 238, 224),
588 honeydew3: Color.new255(193, 205, 193),
589 honeydew4: Color.new255(131, 139, 131),
590 hot pink: Color.new255(255, 105, 180),
591 HotPink: Color.new255(255, 105, 180),
592 HotPink1: Color.new255(255, 110, 180),
593 HotPink2: Color.new255(238, 106, 167),
594 HotPink3: Color.new255(205, 96, 144),
595 HotPink4: Color.new255(139, 58, 98),
596 indian red: Color.new255(205, 92, 92),
597 IndianRed: Color.new255(205, 92, 92),
598 IndianRed1: Color.new255(255, 106, 106),
599 IndianRed2: Color.new255(238, 99, 99),
600 IndianRed3: Color.new255(205, 85, 85),
601 IndianRed4: Color.new255(139, 58, 58),
602 ivory: Color.new255(255, 255, 240),
603 ivory1: Color.new255(255, 255, 240),
604 ivory2: Color.new255(238, 238, 224),
605 ivory3: Color.new255(205, 205, 193),
606 ivory4: Color.new255(139, 139, 131),
607 khaki: Color.new255(240, 230, 140),
608 khaki1: Color.new255(255, 246, 143),
609 khaki2: Color.new255(238, 230, 133),
610 khaki3: Color.new255(205, 198, 115),
611 khaki4: Color.new255(139, 134, 78),
612 lavender: Color.new255(230, 230, 250),
613 lavender blush: Color.new255(255, 240, 245),
614 LavenderBlush: Color.new255(255, 240, 245),
615 LavenderBlush1: Color.new255(255, 240, 245),
616 LavenderBlush2: Color.new255(238, 224, 229),
617 LavenderBlush3: Color.new255(205, 193, 197),
618 LavenderBlush4: Color.new255(139, 131, 134),
619 lawn green: Color.new255(124, 252, 0),
620 LawnGreen: Color.new255(124, 252, 0),
621 lemon chiffon: Color.new255(255, 250, 205),
622 LemonChiffon: Color.new255(255, 250, 205),
623 LemonChiffon1: Color.new255(255, 250, 205),
624 LemonChiffon2: Color.new255(238, 233, 191),
625 LemonChiffon3: Color.new255(205, 201, 165),
626 LemonChiffon4: Color.new255(139, 137, 112),
627 light blue: Color.new255(173, 216, 230),
628 light coral: Color.new255(240, 128, 128),
629 light cyan: Color.new255(224, 255, 255),
630 light goldenrod: Color.new255(238, 221, 130),
631 light goldenrod yellow: Color.new255(250, 250, 210),
632 light gray: Color.new255(211, 211, 211),
633 light grey: Color.new255(211, 211, 211),
634 light pink: Color.new255(255, 182, 193),
635 light salmon: Color.new255(255, 160, 122),
636 light sea green: Color.new255(32, 178, 170),
637 light sky blue: Color.new255(135, 206, 250),
638 light slate blue: Color.new255(132, 112, 255),
639 light slate gray: Color.new255(119, 136, 153),
640 light slate grey: Color.new255(119, 136, 153),
641 light steel blue: Color.new255(176, 196, 222),
642 light yellow: Color.new255(255, 255, 224),
643 LightBlue: Color.new255(173, 216, 230),
644 LightBlue1: Color.new255(191, 239, 255),
645 LightBlue2: Color.new255(178, 223, 238),
646 LightBlue3: Color.new255(154, 192, 205),
647 LightBlue4: Color.new255(104, 131, 139),
648 LightCoral: Color.new255(240, 128, 128),
649 LightCyan: Color.new255(224, 255, 255),
650 LightCyan1: Color.new255(224, 255, 255),
651 LightCyan2: Color.new255(209, 238, 238),
652 LightCyan3: Color.new255(180, 205, 205),
653 LightCyan4: Color.new255(122, 139, 139),
654 LightGoldenrod: Color.new255(238, 221, 130),
655 LightGoldenrod1: Color.new255(255, 236, 139),
656 LightGoldenrod2: Color.new255(238, 220, 130),
657 LightGoldenrod3: Color.new255(205, 190, 112),
658 LightGoldenrod4: Color.new255(139, 129, 76),
659 LightGoldenrodYellow: Color.new255(250, 250, 210),
660 LightGray: Color.new255(211, 211, 211),
661 LightGrey: Color.new255(211, 211, 211),
662 LightPink: Color.new255(255, 182, 193),
663 LightPink1: Color.new255(255, 174, 185),
664 LightPink2: Color.new255(238, 162, 173),
665 LightPink3: Color.new255(205, 140, 149),
666 LightPink4: Color.new255(139, 95, 101),
667 LightSalmon: Color.new255(255, 160, 122),
668 LightSalmon1: Color.new255(255, 160, 122),
669 LightSalmon2: Color.new255(238, 149, 114),
670 LightSalmon3: Color.new255(205, 129, 98),
671 LightSalmon4: Color.new255(139, 87, 66),
672 LightSeaGreen: Color.new255(32, 178, 170),
673 LightSkyBlue: Color.new255(135, 206, 250),
674 LightSkyBlue1: Color.new255(176, 226, 255),
675 LightSkyBlue2: Color.new255(164, 211, 238),
676 LightSkyBlue3: Color.new255(141, 182, 205),
677 LightSkyBlue4: Color.new255(96, 123, 139),
678 LightSlateBlue: Color.new255(132, 112, 255),
679 LightSlateGray: Color.new255(119, 136, 153),
680 LightSlateGrey: Color.new255(119, 136, 153),
681 LightSteelBlue: Color.new255(176, 196, 222),
682 LightSteelBlue1: Color.new255(202, 225, 255),
683 LightSteelBlue2: Color.new255(188, 210, 238),
684 LightSteelBlue3: Color.new255(162, 181, 205),
685 LightSteelBlue4: Color.new255(110, 123, 139),
686 LightYellow: Color.new255(255, 255, 224),
687 LightYellow1: Color.new255(255, 255, 224),
688 LightYellow2: Color.new255(238, 238, 209),
689 LightYellow3: Color.new255(205, 205, 180),
690 LightYellow4: Color.new255(139, 139, 122),
691 lime green: Color.new255(50, 205, 50),
692 LimeGreen: Color.new255(50, 205, 50),
693 linen: Color.new255(250, 240, 230),
694 magenta: Color.new255(255, 0, 255),
695 magenta1: Color.new255(255, 0, 255),
696 magenta2: Color.new255(238, 0, 238),
697 magenta3: Color.new255(205, 0, 205),
698 magenta4: Color.new255(139, 0, 139),
699 maroon: Color.new255(176, 48, 96),
700 maroon1: Color.new255(255, 52, 179),
701 maroon2: Color.new255(238, 48, 167),
702 maroon3: Color.new255(205, 41, 144),
703 maroon4: Color.new255(139, 28, 98),
704 medium aquamarine: Color.new255(102, 205, 170),
705 medium blue: Color.new255(0, 0, 205),
706 medium orchid: Color.new255(186, 85, 211),
707 medium purple: Color.new255(147, 112, 219),
708 medium sea green: Color.new255(60, 179, 113),
709 medium slate blue: Color.new255(123, 104, 238),
710 medium spring green: Color.new255(0, 250, 154),
711 medium turquoise: Color.new255(72, 209, 204),
712 medium violet red: Color.new255(199, 21, 133),
713 MediumAquamarine: Color.new255(102, 205, 170),
714 MediumBlue: Color.new255(0, 0, 205),
715 MediumOrchid: Color.new255(186, 85, 211),
716 MediumOrchid1: Color.new255(224, 102, 255),
717 MediumOrchid2: Color.new255(209, 95, 238),
718 MediumOrchid3: Color.new255(180, 82, 205),
719 MediumOrchid4: Color.new255(122, 55, 139),
720 MediumPurple: Color.new255(147, 112, 219),
721 MediumPurple1: Color.new255(171, 130, 255),
722 MediumPurple2: Color.new255(159, 121, 238),
723 MediumPurple3: Color.new255(137, 104, 205),
724 MediumPurple4: Color.new255(93, 71, 139),
725 MediumSeaGreen: Color.new255(60, 179, 113),
726 MediumSlateBlue: Color.new255(123, 104, 238),
727 MediumSpringGreen: Color.new255(0, 250, 154),
728 MediumTurquoise: Color.new255(72, 209, 204),
729 MediumVioletRed: Color.new255(199, 21, 133),
730 midnight blue: Color.new255(25, 25, 112),
731 MidnightBlue: Color.new255(25, 25, 112),
732 mint cream: Color.new255(245, 255, 250),
733 MintCream: Color.new255(245, 255, 250),
734 misty rose: Color.new255(255, 228, 225),
735 MistyRose: Color.new255(255, 228, 225),
736 MistyRose1: Color.new255(255, 228, 225),
737 MistyRose2: Color.new255(238, 213, 210),
738 MistyRose3: Color.new255(205, 183, 181),
739 MistyRose4: Color.new255(139, 125, 123),
740 moccasin: Color.new255(255, 228, 181),
741 navajo white: Color.new255(255, 222, 173),
742 NavajoWhite: Color.new255(255, 222, 173),
743 NavajoWhite1: Color.new255(255, 222, 173),
744 NavajoWhite2: Color.new255(238, 207, 161),
745 NavajoWhite3: Color.new255(205, 179, 139),
746 NavajoWhite4: Color.new255(139, 121, 94),
747 navy: Color.new255(0, 0, 128),
748 navy blue: Color.new255(0, 0, 128),
749 NavyBlue: Color.new255(0, 0, 128),
750 old lace: Color.new255(253, 245, 230),
751 OldLace: Color.new255(253, 245, 230),
752 olive drab: Color.new255(107, 142, 35),
753 OliveDrab: Color.new255(107, 142, 35),
754 OliveDrab1: Color.new255(192, 255, 62),
755 OliveDrab2: Color.new255(179, 238, 58),
756 OliveDrab3: Color.new255(154, 205, 50),
757 OliveDrab4: Color.new255(105, 139, 34),
758 orange: Color.new255(255, 165, 0),
759 orange red: Color.new255(255, 69, 0),
760 orange1: Color.new255(255, 165, 0),
761 orange2: Color.new255(238, 154, 0),
762 orange3: Color.new255(205, 133, 0),
763 orange4: Color.new255(139, 90, 0),
764 OrangeRed: Color.new255(255, 69, 0),
765 OrangeRed1: Color.new255(255, 69, 0),
766 OrangeRed2: Color.new255(238, 64, 0),
767 OrangeRed3: Color.new255(205, 55, 0),
768 OrangeRed4: Color.new255(139, 37, 0),
769 orchid: Color.new255(218, 112, 214),
770 orchid1: Color.new255(255, 131, 250),
771 orchid2: Color.new255(238, 122, 233),
772 orchid3: Color.new255(205, 105, 201),
773 orchid4: Color.new255(139, 71, 137),
774 pale goldenrod: Color.new255(238, 232, 170),
775 pale green: Color.new255(152, 251, 152),
776 pale turquoise: Color.new255(175, 238, 238),
777 pale violet red: Color.new255(219, 112, 147),
778 PaleGoldenrod: Color.new255(238, 232, 170),
779 PaleGreen: Color.new255(152, 251, 152),
780 PaleGreen1: Color.new255(154, 255, 154),
781 PaleGreen2: Color.new255(144, 238, 144),
782 PaleGreen3: Color.new255(124, 205, 124),
783 PaleGreen4: Color.new255(84, 139, 84),
784 PaleTurquoise: Color.new255(175, 238, 238),
785 PaleTurquoise1: Color.new255(187, 255, 255),
786 PaleTurquoise2: Color.new255(174, 238, 238),
787 PaleTurquoise3: Color.new255(150, 205, 205),
788 PaleTurquoise4: Color.new255(102, 139, 139),
789 PaleVioletRed: Color.new255(219, 112, 147),
790 PaleVioletRed1: Color.new255(255, 130, 171),
791 PaleVioletRed2: Color.new255(238, 121, 159),
792 PaleVioletRed3: Color.new255(205, 104, 137),
793 PaleVioletRed4: Color.new255(139, 71, 93),
794 papaya whip: Color.new255(255, 239, 213),
795 PapayaWhip: Color.new255(255, 239, 213),
796 peach puff: Color.new255(255, 218, 185),
797 PeachPuff: Color.new255(255, 218, 185),
798 PeachPuff1: Color.new255(255, 218, 185),
799 PeachPuff2: Color.new255(238, 203, 173),
800 PeachPuff3: Color.new255(205, 175, 149),
801 PeachPuff4: Color.new255(139, 119, 101),
802 peru: Color.new255(205, 133, 63),
803 pink: Color.new255(255, 192, 203),
804 pink1: Color.new255(255, 181, 197),
805 pink2: Color.new255(238, 169, 184),
806 pink3: Color.new255(205, 145, 158),
807 pink4: Color.new255(139, 99, 108),
808 plum: Color.new255(221, 160, 221),
809 plum1: Color.new255(255, 187, 255),
810 plum2: Color.new255(238, 174, 238),
811 plum3: Color.new255(205, 150, 205),
812 plum4: Color.new255(139, 102, 139),
813 powder blue: Color.new255(176, 224, 230),
814 PowderBlue: Color.new255(176, 224, 230),
815 purple: Color.new255(160, 32, 240),
816 purple1: Color.new255(155, 48, 255),
817 purple2: Color.new255(145, 44, 238),
818 purple3: Color.new255(125, 38, 205),
819 purple4: Color.new255(85, 26, 139),
820 red: Color.new255(255, 0, 0),
821 red1: Color.new255(255, 0, 0),
822 red2: Color.new255(238, 0, 0),
823 red3: Color.new255(205, 0, 0),
824 red4: Color.new255(139, 0, 0),
825 rosy brown: Color.new255(188, 143, 143),
826 RosyBrown: Color.new255(188, 143, 143),
827 RosyBrown1: Color.new255(255, 193, 193),
828 RosyBrown2: Color.new255(238, 180, 180),
829 RosyBrown3: Color.new255(205, 155, 155),
830 RosyBrown4: Color.new255(139, 105, 105),
831 royal blue: Color.new255(65, 105, 225),
832 RoyalBlue: Color.new255(65, 105, 225),
833 RoyalBlue1: Color.new255(72, 118, 255),
834 RoyalBlue2: Color.new255(67, 110, 238),
835 RoyalBlue3: Color.new255(58, 95, 205),
836 RoyalBlue4: Color.new255(39, 64, 139),
837 saddle brown: Color.new255(139, 69, 19),
838 SaddleBrown: Color.new255(139, 69, 19),
839 salmon: Color.new255(250, 128, 114),
840 salmon1: Color.new255(255, 140, 105),
841 salmon2: Color.new255(238, 130, 98),
842 salmon3: Color.new255(205, 112, 84),
843 salmon4: Color.new255(139, 76, 57),
844 sandy brown: Color.new255(244, 164, 96),
845 SandyBrown: Color.new255(244, 164, 96),
846 sea green: Color.new255(46, 139, 87),
847 SeaGreen: Color.new255(46, 139, 87),
848 SeaGreen1: Color.new255(84, 255, 159),
849 SeaGreen2: Color.new255(78, 238, 148),
850 SeaGreen3: Color.new255(67, 205, 128),
851 SeaGreen4: Color.new255(46, 139, 87),
852 seashell: Color.new255(255, 245, 238),
853 seashell1: Color.new255(255, 245, 238),
854 seashell2: Color.new255(238, 229, 222),
855 seashell3: Color.new255(205, 197, 191),
856 seashell4: Color.new255(139, 134, 130),
857 sienna: Color.new255(160, 82, 45),
858 sienna1: Color.new255(255, 130, 71),
859 sienna2: Color.new255(238, 121, 66),
860 sienna3: Color.new255(205, 104, 57),
861 sienna4: Color.new255(139, 71, 38),
862 sky blue: Color.new255(135, 206, 235),
863 SkyBlue: Color.new255(135, 206, 235),
864 SkyBlue1: Color.new255(135, 206, 255),
865 SkyBlue2: Color.new255(126, 192, 238),
866 SkyBlue3: Color.new255(108, 166, 205),
867 SkyBlue4: Color.new255(74, 112, 139),
868 slate blue: Color.new255(106, 90, 205),
869 slate gray: Color.new255(112, 128, 144),
870 slate grey: Color.new255(112, 128, 144),
871 SlateBlue: Color.new255(106, 90, 205),
872 SlateBlue1: Color.new255(131, 111, 255),
873 SlateBlue2: Color.new255(122, 103, 238),
874 SlateBlue3: Color.new255(105, 89, 205),
875 SlateBlue4: Color.new255(71, 60, 139),
876 SlateGray: Color.new255(112, 128, 144),
877 SlateGray1: Color.new255(198, 226, 255),
878 SlateGray2: Color.new255(185, 211, 238),
879 SlateGray3: Color.new255(159, 182, 205),
880 SlateGray4: Color.new255(108, 123, 139),
881 SlateGrey: Color.new255(112, 128, 144),
882 snow: Color.new255(255, 250, 250),
883 snow1: Color.new255(255, 250, 250),
884 snow2: Color.new255(238, 233, 233),
885 snow3: Color.new255(205, 201, 201),
886 snow4: Color.new255(139, 137, 137),
887 spring green: Color.new255(0, 255, 127),
888 SpringGreen: Color.new255(0, 255, 127),
889 SpringGreen1: Color.new255(0, 255, 127),
890 SpringGreen2: Color.new255(0, 238, 118),
891 SpringGreen3: Color.new255(0, 205, 102),
892 SpringGreen4: Color.new255(0, 139, 69),
893 steel blue: Color.new255(70, 130, 180),
894 SteelBlue: Color.new255(70, 130, 180),
895 SteelBlue1: Color.new255(99, 184, 255),
896 SteelBlue2: Color.new255(92, 172, 238),
897 SteelBlue3: Color.new255(79, 148, 205),
898 SteelBlue4: Color.new255(54, 100, 139),
899 tan: Color.new255(210, 180, 140),
900 tan1: Color.new255(255, 165, 79),
901 tan2: Color.new255(238, 154, 73),
902 tan3: Color.new255(205, 133, 63),
903 tan4: Color.new255(139, 90, 43),
904 thistle: Color.new255(216, 191, 216),
905 thistle1: Color.new255(255, 225, 255),
906 thistle2: Color.new255(238, 210, 238),
907 thistle3: Color.new255(205, 181, 205),
908 thistle4: Color.new255(139, 123, 139),
909 tomato: Color.new255(255, 99, 71),
910 tomato1: Color.new255(255, 99, 71),
911 tomato2: Color.new255(238, 92, 66),
912 tomato3: Color.new255(205, 79, 57),
913 tomato4: Color.new255(139, 54, 38),
914 turquoise: Color.new255(64, 224, 208),
915 turquoise1: Color.new255(0, 245, 255),
916 turquoise2: Color.new255(0, 229, 238),
917 turquoise3: Color.new255(0, 197, 205),
918 turquoise4: Color.new255(0, 134, 139),
919 violet: Color.new255(238, 130, 238),
920 violet red: Color.new255(208, 32, 144),
921 VioletRed: Color.new255(208, 32, 144),
922 VioletRed1: Color.new255(255, 62, 150),
923 VioletRed2: Color.new255(238, 58, 140),
924 VioletRed3: Color.new255(205, 50, 120),
925 VioletRed4: Color.new255(139, 34, 82),
926 wheat: Color.new255(245, 222, 179),
927 wheat1: Color.new255(255, 231, 186),
928 wheat2: Color.new255(238, 216, 174),
929 wheat3: Color.new255(205, 186, 150),
930 wheat4: Color.new255(139, 126, 102),
931 white: Color.new255(255, 255, 255),
932 white smoke: Color.new255(245, 245, 245),
933 WhiteSmoke: Color.new255(245, 245, 245),
934 yellow: Color.new255(255, 255, 0),
935 yellow green: Color.new255(154, 205, 50),
936 yellow1: Color.new255(255, 255, 0),
937 yellow2: Color.new255(238, 238, 0),
938 yellow3: Color.new255(205, 205, 0),
939 yellow4: Color.new255(139, 139, 0),
940 YellowGreen: Color.new255(154, 205, 50)