aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2008-05-10 17:28:09 +0000
committerChong Yidong2008-05-10 17:28:09 +0000
commit3f2f222ab417986a924f79a324307c2d7e4b8e98 (patch)
treed80bd6735a09fef8fed057df04bed6a8f5d07637
parentf4c1641466184edf8973c9c44d039ef0632c4434 (diff)
downloademacs-3f2f222ab417986a924f79a324307c2d7e4b8e98.tar.gz
emacs-3f2f222ab417986a924f79a324307c2d7e4b8e98.zip
(x-colors): Re-order colors.
-rw-r--r--lisp/term/mac-win.el846
-rw-r--r--lisp/term/w32-win.el846
-rw-r--r--lisp/term/x-win.el846
3 files changed, 279 insertions, 2259 deletions
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el
index 95a873f72ed..449154617a6 100644
--- a/lisp/term/mac-win.el
+++ b/lisp/term/mac-win.el
@@ -294,759 +294,99 @@ This function returns ARGS minus the arguments that have been processed."
294;; 294;;
295;; Available colors 295;; Available colors
296;; 296;;
297 297;; The ordering of the colors is chosen for the user's convenience in
298(defvar x-colors '("LightGreen" 298;; `list-colors-display', which displays the reverse of this list.
299 "light green" 299;; Roughly speaking, `list-colors-display' orders by (i) named shades
300 "DarkRed" 300;; of grey with hue 0.0, sorted by value (ii) named colors with
301 "dark red" 301;; saturation 1.0, sorted by hue, (iii) named non-white colors with
302 "DarkMagenta" 302;; saturation less than 1.0, sorted by hue, (iv) other named shades of
303 "dark magenta" 303;; white, (v) numbered colors sorted by hue, and (vi) numbered shades
304 "DarkCyan" 304;; of grey.
305 "dark cyan" 305
306 "DarkBlue" 306(defvar x-colors
307 "dark blue" 307 '("gray100" "gray99" "gray98" "gray97" "gray96" "gray95" "gray94" "gray93" "gray92"
308 "DarkGray" 308 "gray91" "gray90" "gray89" "gray88" "gray87" "gray86" "gray85" "gray84" "gray83"
309 "dark gray" 309 "gray82" "gray81" "gray80" "gray79" "gray78" "gray77" "gray76" "gray75" "gray74"
310 "DarkGrey" 310 "gray73" "gray72" "gray71" "gray70" "gray69" "gray68" "gray67" "gray66" "gray65"
311 "dark grey" 311 "gray64" "gray63" "gray62" "gray61" "gray60" "gray59" "gray58" "gray57" "gray56"
312 "grey100" 312 "gray55" "gray54" "gray53" "gray52" "gray51" "gray50" "gray49" "gray48" "gray47"
313 "gray100" 313 "gray46" "gray45" "gray44" "gray43" "gray42" "gray41" "gray40" "gray39" "gray38"
314 "grey99" 314 "gray37" "gray36" "gray35" "gray34" "gray33" "gray32" "gray31" "gray30" "gray29"
315 "gray99" 315 "gray28" "gray27" "gray26" "gray25" "gray24" "gray23" "gray22" "gray21" "gray20"
316 "grey98" 316 "gray19" "gray18" "gray17" "gray16" "gray15" "gray14" "gray13" "gray12" "gray11"
317 "gray98" 317 "gray10" "gray9" "gray8" "gray7" "gray6" "gray5" "gray4" "gray3" "gray2" "gray1"
318 "grey97" 318 "gray0" "LightPink1" "LightPink2" "LightPink3" "LightPink4" "pink1" "pink2" "pink3"
319 "gray97" 319 "pink4" "PaleVioletRed1" "PaleVioletRed2" "PaleVioletRed3" "PaleVioletRed4"
320 "grey96" 320 "LavenderBlush1" "LavenderBlush2" "LavenderBlush3" "LavenderBlush4" "VioletRed1"
321 "gray96" 321 "VioletRed2" "VioletRed3" "VioletRed4" "HotPink1" "HotPink2" "HotPink3" "HotPink4"
322 "grey95" 322 "DeepPink1" "DeepPink2" "DeepPink3" "DeepPink4" "maroon1" "maroon2" "maroon3"
323 "gray95" 323 "maroon4" "orchid1" "orchid2" "orchid3" "orchid4" "plum1" "plum2" "plum3" "plum4"
324 "grey94" 324 "thistle1" "thistle2" "thistle3" "thistle4" "MediumOrchid1" "MediumOrchid2"
325 "gray94" 325 "MediumOrchid3" "MediumOrchid4" "DarkOrchid1" "DarkOrchid2" "DarkOrchid3"
326 "grey93" 326 "DarkOrchid4" "purple1" "purple2" "purple3" "purple4" "MediumPurple1"
327 "gray93" 327 "MediumPurple2" "MediumPurple3" "MediumPurple4" "SlateBlue1" "SlateBlue2"
328 "grey92" 328 "SlateBlue3" "SlateBlue4" "RoyalBlue1" "RoyalBlue2" "RoyalBlue3" "RoyalBlue4"
329 "gray92" 329 "LightSteelBlue1" "LightSteelBlue2" "LightSteelBlue3" "LightSteelBlue4" "SlateGray1"
330 "grey91" 330 "SlateGray2" "SlateGray3" "SlateGray4" "DodgerBlue1" "DodgerBlue2" "DodgerBlue3"
331 "gray91" 331 "DodgerBlue4" "SteelBlue1" "SteelBlue2" "SteelBlue3" "SteelBlue4" "SkyBlue1"
332 "grey90" 332 "SkyBlue2" "SkyBlue3" "SkyBlue4" "LightSkyBlue1" "LightSkyBlue2" "LightSkyBlue3"
333 "gray90" 333 "LightSkyBlue4" "LightBlue1" "LightBlue2" "LightBlue3" "LightBlue4" "CadetBlue1"
334 "grey89" 334 "CadetBlue2" "CadetBlue3" "CadetBlue4" "azure1" "azure2" "azure3" "azure4"
335 "gray89" 335 "LightCyan1" "LightCyan2" "LightCyan3" "LightCyan4" "PaleTurquoise1"
336 "grey88" 336 "PaleTurquoise2" "PaleTurquoise3" "PaleTurquoise4" "DarkSlateGray1" "DarkSlateGray2"
337 "gray88" 337 "DarkSlateGray3" "DarkSlateGray4" "aquamarine1" "aquamarine2" "aquamarine3"
338 "grey87" 338 "aquamarine4" "SeaGreen1" "SeaGreen2" "SeaGreen3" "SeaGreen4" "honeydew1"
339 "gray87" 339 "honeydew2" "honeydew3" "honeydew4" "DarkSeaGreen1" "DarkSeaGreen2" "DarkSeaGreen3"
340 "grey86" 340 "DarkSeaGreen4" "PaleGreen1" "PaleGreen2" "PaleGreen3" "PaleGreen4"
341 "gray86" 341 "DarkOliveGreen1" "DarkOliveGreen2" "DarkOliveGreen3" "DarkOliveGreen4" "OliveDrab1"
342 "grey85" 342 "OliveDrab2" "OliveDrab3" "OliveDrab4" "ivory1" "ivory2" "ivory3" "ivory4"
343 "gray85" 343 "LightYellow1" "LightYellow2" "LightYellow3" "LightYellow4" "khaki1" "khaki2"
344 "grey84" 344 "khaki3" "khaki4" "LemonChiffon1" "LemonChiffon2" "LemonChiffon3" "LemonChiffon4"
345 "gray84" 345 "LightGoldenrod1" "LightGoldenrod2" "LightGoldenrod3" "LightGoldenrod4" "cornsilk1"
346 "grey83" 346 "cornsilk2" "cornsilk3" "cornsilk4" "goldenrod1" "goldenrod2" "goldenrod3"
347 "gray83" 347 "goldenrod4" "DarkGoldenrod1" "DarkGoldenrod2" "DarkGoldenrod3" "DarkGoldenrod4"
348 "grey82" 348 "wheat1" "wheat2" "wheat3" "wheat4" "NavajoWhite1" "NavajoWhite2" "NavajoWhite3"
349 "gray82" 349 "NavajoWhite4" "burlywood1" "burlywood2" "burlywood3" "burlywood4" "AntiqueWhite1"
350 "grey81" 350 "AntiqueWhite2" "AntiqueWhite3" "AntiqueWhite4" "bisque1" "bisque2" "bisque3"
351 "gray81" 351 "bisque4" "tan1" "tan2" "tan3" "tan4" "PeachPuff1" "PeachPuff2" "PeachPuff3"
352 "grey80" 352 "PeachPuff4" "seashell1" "seashell2" "seashell3" "seashell4" "chocolate1"
353 "gray80" 353 "chocolate2" "chocolate3" "chocolate4" "sienna1" "sienna2" "sienna3" "sienna4"
354 "grey79" 354 "LightSalmon1" "LightSalmon2" "LightSalmon3" "LightSalmon4" "salmon1" "salmon2"
355 "gray79" 355 "salmon3" "salmon4" "coral1" "coral2" "coral3" "coral4" "tomato1" "tomato2"
356 "grey78" 356 "tomato3" "tomato4" "MistyRose1" "MistyRose2" "MistyRose3" "MistyRose4" "snow1"
357 "gray78" 357 "snow2" "snow3" "snow4" "RosyBrown1" "RosyBrown2" "RosyBrown3" "RosyBrown4"
358 "grey77" 358 "IndianRed1" "IndianRed2" "IndianRed3" "IndianRed4" "firebrick1" "firebrick2"
359 "gray77" 359 "firebrick3" "firebrick4" "brown1" "brown2" "brown3" "brown4" "magenta1" "magenta2"
360 "grey76" 360 "magenta3" "magenta4" "blue1" "blue2" "blue3" "blue4" "DeepSkyBlue1" "DeepSkyBlue2"
361 "gray76" 361 "DeepSkyBlue3" "DeepSkyBlue4" "turquoise1" "turquoise2" "turquoise3" "turquoise4"
362 "grey75" 362 "cyan1" "cyan2" "cyan3" "cyan4" "SpringGreen1" "SpringGreen2" "SpringGreen3"
363 "gray75" 363 "SpringGreen4" "green1" "green2" "green3" "green4" "chartreuse1" "chartreuse2"
364 "grey74" 364 "chartreuse3" "chartreuse4" "yellow1" "yellow2" "yellow3" "yellow4" "gold1" "gold2"
365 "gray74" 365 "gold3" "gold4" "orange1" "orange2" "orange3" "orange4" "DarkOrange1" "DarkOrange2"
366 "grey73" 366 "DarkOrange3" "DarkOrange4" "OrangeRed1" "OrangeRed2" "OrangeRed3" "OrangeRed4"
367 "gray73" 367 "red1" "red2" "red3" "red4" "lavender blush" "ghost white" "lavender" "alice blue"
368 "grey72" 368 "azure" "light cyan" "mint cream" "honeydew" "ivory" "light goldenrod yellow"
369 "gray72" 369 "light yellow" "beige" "floral white" "old lace" "blanched almond" "moccasin"
370 "grey71" 370 "papaya whip" "bisque" "antique white" "linen" "peach puff" "seashell" "misty rose"
371 "gray71" 371 "snow" "light pink" "pink" "hot pink" "deep pink" "maroon" "pale violet red"
372 "grey70" 372 "violet red" "medium violet red" "violet" "plum" "thistle" "orchid" "medium orchid"
373 "gray70" 373 "dark orchid" "purple" "blue violet" "medium purple" "light slate blue"
374 "grey69" 374 "medium slate blue" "slate blue" "dark slate blue" "midnight blue" "navy"
375 "gray69" 375 "dark blue" "light steel blue" "cornflower blue" "dodger blue" "royal blue"
376 "grey68" 376 "light slate gray" "slate gray" "dark slate gray" "steel blue" "cadet blue"
377 "gray68" 377 "light sky blue" "sky blue" "light blue" "powder blue" "pale turquoise"
378 "grey67" 378 "medium turquoise" "dark cyan" "aquamarine" "medium aquamarine" "light sea green"
379 "gray67" 379 "medium sea green" "sea green" "dark sea green" "pale green" "lime green"
380 "grey66" 380 "forest green" "light green" "green yellow" "yellow green" "olive drab"
381 "gray66" 381 "dark olive green" "lemon chiffon" "khaki" "dark khaki" "cornsilk"
382 "grey65" 382 "pale goldenrod" "light goldenrod" "goldenrod" "dark goldenrod" "wheat"
383 "gray65" 383 "navajo white" "tan" "burlywood" "sandy brown" "peru" "chocolate" "saddle brown"
384 "grey64" 384 "sienna" "rosy brown" "dark salmon" "coral" "tomato" "light salmon" "salmon"
385 "gray64" 385 "light coral" "indian red" "firebrick" "brown" "dark red" "magenta"
386 "grey63" 386 "dark magenta" "dark violet" "medium blue" "blue" "deep sky blue" "turquoise"
387 "gray63" 387 "cyan" "medium spring green" "spring green" "green" "lawn green" "chartreuse"
388 "grey62" 388 "yellow" "gold" "orange" "dark orange" "orange red" "red" "white" "white smoke"
389 "gray62" 389 "gainsboro" "light grey" "gray" "dark grey" "dim gray" "black" )
390 "grey61"
391 "gray61"
392 "grey60"
393 "gray60"
394 "grey59"
395 "gray59"
396 "grey58"
397 "gray58"
398 "grey57"
399 "gray57"
400 "grey56"
401 "gray56"
402 "grey55"
403 "gray55"
404 "grey54"
405 "gray54"
406 "grey53"
407 "gray53"
408 "grey52"
409 "gray52"
410 "grey51"
411 "gray51"
412 "grey50"
413 "gray50"
414 "grey49"
415 "gray49"
416 "grey48"
417 "gray48"
418 "grey47"
419 "gray47"
420 "grey46"
421 "gray46"
422 "grey45"
423 "gray45"
424 "grey44"
425 "gray44"
426 "grey43"
427 "gray43"
428 "grey42"
429 "gray42"
430 "grey41"
431 "gray41"
432 "grey40"
433 "gray40"
434 "grey39"
435 "gray39"
436 "grey38"
437 "gray38"
438 "grey37"
439 "gray37"
440 "grey36"
441 "gray36"
442 "grey35"
443 "gray35"
444 "grey34"
445 "gray34"
446 "grey33"
447 "gray33"
448 "grey32"
449 "gray32"
450 "grey31"
451 "gray31"
452 "grey30"
453 "gray30"
454 "grey29"
455 "gray29"
456 "grey28"
457 "gray28"
458 "grey27"
459 "gray27"
460 "grey26"
461 "gray26"
462 "grey25"
463 "gray25"
464 "grey24"
465 "gray24"
466 "grey23"
467 "gray23"
468 "grey22"
469 "gray22"
470 "grey21"
471 "gray21"
472 "grey20"
473 "gray20"
474 "grey19"
475 "gray19"
476 "grey18"
477 "gray18"
478 "grey17"
479 "gray17"
480 "grey16"
481 "gray16"
482 "grey15"
483 "gray15"
484 "grey14"
485 "gray14"
486 "grey13"
487 "gray13"
488 "grey12"
489 "gray12"
490 "grey11"
491 "gray11"
492 "grey10"
493 "gray10"
494 "grey9"
495 "gray9"
496 "grey8"
497 "gray8"
498 "grey7"
499 "gray7"
500 "grey6"
501 "gray6"
502 "grey5"
503 "gray5"
504 "grey4"
505 "gray4"
506 "grey3"
507 "gray3"
508 "grey2"
509 "gray2"
510 "grey1"
511 "gray1"
512 "grey0"
513 "gray0"
514 "thistle4"
515 "thistle3"
516 "thistle2"
517 "thistle1"
518 "MediumPurple4"
519 "MediumPurple3"
520 "MediumPurple2"
521 "MediumPurple1"
522 "purple4"
523 "purple3"
524 "purple2"
525 "purple1"
526 "DarkOrchid4"
527 "DarkOrchid3"
528 "DarkOrchid2"
529 "DarkOrchid1"
530 "MediumOrchid4"
531 "MediumOrchid3"
532 "MediumOrchid2"
533 "MediumOrchid1"
534 "plum4"
535 "plum3"
536 "plum2"
537 "plum1"
538 "orchid4"
539 "orchid3"
540 "orchid2"
541 "orchid1"
542 "magenta4"
543 "magenta3"
544 "magenta2"
545 "magenta1"
546 "VioletRed4"
547 "VioletRed3"
548 "VioletRed2"
549 "VioletRed1"
550 "maroon4"
551 "maroon3"
552 "maroon2"
553 "maroon1"
554 "PaleVioletRed4"
555 "PaleVioletRed3"
556 "PaleVioletRed2"
557 "PaleVioletRed1"
558 "LightPink4"
559 "LightPink3"
560 "LightPink2"
561 "LightPink1"
562 "pink4"
563 "pink3"
564 "pink2"
565 "pink1"
566 "HotPink4"
567 "HotPink3"
568 "HotPink2"
569 "HotPink1"
570 "DeepPink4"
571 "DeepPink3"
572 "DeepPink2"
573 "DeepPink1"
574 "red4"
575 "red3"
576 "red2"
577 "red1"
578 "OrangeRed4"
579 "OrangeRed3"
580 "OrangeRed2"
581 "OrangeRed1"
582 "tomato4"
583 "tomato3"
584 "tomato2"
585 "tomato1"
586 "coral4"
587 "coral3"
588 "coral2"
589 "coral1"
590 "DarkOrange4"
591 "DarkOrange3"
592 "DarkOrange2"
593 "DarkOrange1"
594 "orange4"
595 "orange3"
596 "orange2"
597 "orange1"
598 "LightSalmon4"
599 "LightSalmon3"
600 "LightSalmon2"
601 "LightSalmon1"
602 "salmon4"
603 "salmon3"
604 "salmon2"
605 "salmon1"
606 "brown4"
607 "brown3"
608 "brown2"
609 "brown1"
610 "firebrick4"
611 "firebrick3"
612 "firebrick2"
613 "firebrick1"
614 "chocolate4"
615 "chocolate3"
616 "chocolate2"
617 "chocolate1"
618 "tan4"
619 "tan3"
620 "tan2"
621 "tan1"
622 "wheat4"
623 "wheat3"
624 "wheat2"
625 "wheat1"
626 "burlywood4"
627 "burlywood3"
628 "burlywood2"
629 "burlywood1"
630 "sienna4"
631 "sienna3"
632 "sienna2"
633 "sienna1"
634 "IndianRed4"
635 "IndianRed3"
636 "IndianRed2"
637 "IndianRed1"
638 "RosyBrown4"
639 "RosyBrown3"
640 "RosyBrown2"
641 "RosyBrown1"
642 "DarkGoldenrod4"
643 "DarkGoldenrod3"
644 "DarkGoldenrod2"
645 "DarkGoldenrod1"
646 "goldenrod4"
647 "goldenrod3"
648 "goldenrod2"
649 "goldenrod1"
650 "gold4"
651 "gold3"
652 "gold2"
653 "gold1"
654 "yellow4"
655 "yellow3"
656 "yellow2"
657 "yellow1"
658 "LightYellow4"
659 "LightYellow3"
660 "LightYellow2"
661 "LightYellow1"
662 "LightGoldenrod4"
663 "LightGoldenrod3"
664 "LightGoldenrod2"
665 "LightGoldenrod1"
666 "khaki4"
667 "khaki3"
668 "khaki2"
669 "khaki1"
670 "DarkOliveGreen4"
671 "DarkOliveGreen3"
672 "DarkOliveGreen2"
673 "DarkOliveGreen1"
674 "OliveDrab4"
675 "OliveDrab3"
676 "OliveDrab2"
677 "OliveDrab1"
678 "chartreuse4"
679 "chartreuse3"
680 "chartreuse2"
681 "chartreuse1"
682 "green4"
683 "green3"
684 "green2"
685 "green1"
686 "SpringGreen4"
687 "SpringGreen3"
688 "SpringGreen2"
689 "SpringGreen1"
690 "PaleGreen4"
691 "PaleGreen3"
692 "PaleGreen2"
693 "PaleGreen1"
694 "SeaGreen4"
695 "SeaGreen3"
696 "SeaGreen2"
697 "SeaGreen1"
698 "DarkSeaGreen4"
699 "DarkSeaGreen3"
700 "DarkSeaGreen2"
701 "DarkSeaGreen1"
702 "aquamarine4"
703 "aquamarine3"
704 "aquamarine2"
705 "aquamarine1"
706 "DarkSlateGray4"
707 "DarkSlateGray3"
708 "DarkSlateGray2"
709 "DarkSlateGray1"
710 "cyan4"
711 "cyan3"
712 "cyan2"
713 "cyan1"
714 "turquoise4"
715 "turquoise3"
716 "turquoise2"
717 "turquoise1"
718 "CadetBlue4"
719 "CadetBlue3"
720 "CadetBlue2"
721 "CadetBlue1"
722 "PaleTurquoise4"
723 "PaleTurquoise3"
724 "PaleTurquoise2"
725 "PaleTurquoise1"
726 "LightCyan4"
727 "LightCyan3"
728 "LightCyan2"
729 "LightCyan1"
730 "LightBlue4"
731 "LightBlue3"
732 "LightBlue2"
733 "LightBlue1"
734 "LightSteelBlue4"
735 "LightSteelBlue3"
736 "LightSteelBlue2"
737 "LightSteelBlue1"
738 "SlateGray4"
739 "SlateGray3"
740 "SlateGray2"
741 "SlateGray1"
742 "LightSkyBlue4"
743 "LightSkyBlue3"
744 "LightSkyBlue2"
745 "LightSkyBlue1"
746 "SkyBlue4"
747 "SkyBlue3"
748 "SkyBlue2"
749 "SkyBlue1"
750 "DeepSkyBlue4"
751 "DeepSkyBlue3"
752 "DeepSkyBlue2"
753 "DeepSkyBlue1"
754 "SteelBlue4"
755 "SteelBlue3"
756 "SteelBlue2"
757 "SteelBlue1"
758 "DodgerBlue4"
759 "DodgerBlue3"
760 "DodgerBlue2"
761 "DodgerBlue1"
762 "blue4"
763 "blue3"
764 "blue2"
765 "blue1"
766 "RoyalBlue4"
767 "RoyalBlue3"
768 "RoyalBlue2"
769 "RoyalBlue1"
770 "SlateBlue4"
771 "SlateBlue3"
772 "SlateBlue2"
773 "SlateBlue1"
774 "azure4"
775 "azure3"
776 "azure2"
777 "azure1"
778 "MistyRose4"
779 "MistyRose3"
780 "MistyRose2"
781 "MistyRose1"
782 "LavenderBlush4"
783 "LavenderBlush3"
784 "LavenderBlush2"
785 "LavenderBlush1"
786 "honeydew4"
787 "honeydew3"
788 "honeydew2"
789 "honeydew1"
790 "ivory4"
791 "ivory3"
792 "ivory2"
793 "ivory1"
794 "cornsilk4"
795 "cornsilk3"
796 "cornsilk2"
797 "cornsilk1"
798 "LemonChiffon4"
799 "LemonChiffon3"
800 "LemonChiffon2"
801 "LemonChiffon1"
802 "NavajoWhite4"
803 "NavajoWhite3"
804 "NavajoWhite2"
805 "NavajoWhite1"
806 "PeachPuff4"
807 "PeachPuff3"
808 "PeachPuff2"
809 "PeachPuff1"
810 "bisque4"
811 "bisque3"
812 "bisque2"
813 "bisque1"
814 "AntiqueWhite4"
815 "AntiqueWhite3"
816 "AntiqueWhite2"
817 "AntiqueWhite1"
818 "seashell4"
819 "seashell3"
820 "seashell2"
821 "seashell1"
822 "snow4"
823 "snow3"
824 "snow2"
825 "snow1"
826 "thistle"
827 "MediumPurple"
828 "medium purple"
829 "purple"
830 "BlueViolet"
831 "blue violet"
832 "DarkViolet"
833 "dark violet"
834 "DarkOrchid"
835 "dark orchid"
836 "MediumOrchid"
837 "medium orchid"
838 "orchid"
839 "plum"
840 "violet"
841 "magenta"
842 "VioletRed"
843 "violet red"
844 "MediumVioletRed"
845 "medium violet red"
846 "maroon"
847 "PaleVioletRed"
848 "pale violet red"
849 "LightPink"
850 "light pink"
851 "pink"
852 "DeepPink"
853 "deep pink"
854 "HotPink"
855 "hot pink"
856 "red"
857 "OrangeRed"
858 "orange red"
859 "tomato"
860 "LightCoral"
861 "light coral"
862 "coral"
863 "DarkOrange"
864 "dark orange"
865 "orange"
866 "LightSalmon"
867 "light salmon"
868 "salmon"
869 "DarkSalmon"
870 "dark salmon"
871 "brown"
872 "firebrick"
873 "chocolate"
874 "tan"
875 "SandyBrown"
876 "sandy brown"
877 "wheat"
878 "beige"
879 "burlywood"
880 "peru"
881 "sienna"
882 "SaddleBrown"
883 "saddle brown"
884 "IndianRed"
885 "indian red"
886 "RosyBrown"
887 "rosy brown"
888 "DarkGoldenrod"
889 "dark goldenrod"
890 "goldenrod"
891 "LightGoldenrod"
892 "light goldenrod"
893 "gold"
894 "yellow"
895 "LightYellow"
896 "light yellow"
897 "LightGoldenrodYellow"
898 "light goldenrod yellow"
899 "PaleGoldenrod"
900 "pale goldenrod"
901 "khaki"
902 "DarkKhaki"
903 "dark khaki"
904 "OliveDrab"
905 "olive drab"
906 "ForestGreen"
907 "forest green"
908 "YellowGreen"
909 "yellow green"
910 "LimeGreen"
911 "lime green"
912 "GreenYellow"
913 "green yellow"
914 "MediumSpringGreen"
915 "medium spring green"
916 "chartreuse"
917 "green"
918 "LawnGreen"
919 "lawn green"
920 "SpringGreen"
921 "spring green"
922 "PaleGreen"
923 "pale green"
924 "LightSeaGreen"
925 "light sea green"
926 "MediumSeaGreen"
927 "medium sea green"
928 "SeaGreen"
929 "sea green"
930 "DarkSeaGreen"
931 "dark sea green"
932 "DarkOliveGreen"
933 "dark olive green"
934 "DarkGreen"
935 "dark green"
936 "aquamarine"
937 "MediumAquamarine"
938 "medium aquamarine"
939 "CadetBlue"
940 "cadet blue"
941 "LightCyan"
942 "light cyan"
943 "cyan"
944 "turquoise"
945 "MediumTurquoise"
946 "medium turquoise"
947 "DarkTurquoise"
948 "dark turquoise"
949 "PaleTurquoise"
950 "pale turquoise"
951 "PowderBlue"
952 "powder blue"
953 "LightBlue"
954 "light blue"
955 "LightSteelBlue"
956 "light steel blue"
957 "SteelBlue"
958 "steel blue"
959 "LightSkyBlue"
960 "light sky blue"
961 "SkyBlue"
962 "sky blue"
963 "DeepSkyBlue"
964 "deep sky blue"
965 "DodgerBlue"
966 "dodger blue"
967 "blue"
968 "RoyalBlue"
969 "royal blue"
970 "MediumBlue"
971 "medium blue"
972 "LightSlateBlue"
973 "light slate blue"
974 "MediumSlateBlue"
975 "medium slate blue"
976 "SlateBlue"
977 "slate blue"
978 "DarkSlateBlue"
979 "dark slate blue"
980 "CornflowerBlue"
981 "cornflower blue"
982 "NavyBlue"
983 "navy blue"
984 "navy"
985 "MidnightBlue"
986 "midnight blue"
987 "LightGray"
988 "light gray"
989 "LightGrey"
990 "light grey"
991 "grey"
992 "gray"
993 "LightSlateGrey"
994 "light slate grey"
995 "LightSlateGray"
996 "light slate gray"
997 "SlateGrey"
998 "slate grey"
999 "SlateGray"
1000 "slate gray"
1001 "DimGrey"
1002 "dim grey"
1003 "DimGray"
1004 "dim gray"
1005 "DarkSlateGrey"
1006 "dark slate grey"
1007 "DarkSlateGray"
1008 "dark slate gray"
1009 "black"
1010 "white"
1011 "MistyRose"
1012 "misty rose"
1013 "LavenderBlush"
1014 "lavender blush"
1015 "lavender"
1016 "AliceBlue"
1017 "alice blue"
1018 "azure"
1019 "MintCream"
1020 "mint cream"
1021 "honeydew"
1022 "seashell"
1023 "LemonChiffon"
1024 "lemon chiffon"
1025 "ivory"
1026 "cornsilk"
1027 "moccasin"
1028 "NavajoWhite"
1029 "navajo white"
1030 "PeachPuff"
1031 "peach puff"
1032 "bisque"
1033 "BlanchedAlmond"
1034 "blanched almond"
1035 "PapayaWhip"
1036 "papaya whip"
1037 "AntiqueWhite"
1038 "antique white"
1039 "linen"
1040 "OldLace"
1041 "old lace"
1042 "FloralWhite"
1043 "floral white"
1044 "gainsboro"
1045 "WhiteSmoke"
1046 "white smoke"
1047 "GhostWhite"
1048 "ghost white"
1049 "snow")
1050 "The list of X colors from the `rgb.txt' file. 390 "The list of X colors from the `rgb.txt' file.
1051XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp") 391XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
1052 392
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el
index 773f3e9d3f8..1debc8031da 100644
--- a/lisp/term/w32-win.el
+++ b/lisp/term/w32-win.el
@@ -275,759 +275,99 @@ This returns ARGS with the arguments that have been processed removed."
275;; 275;;
276;; Available colors 276;; Available colors
277;; 277;;
278 278;; The ordering of the colors is chosen for the user's convenience in
279(defvar x-colors '("LightGreen" 279;; `list-colors-display', which displays the reverse of this list.
280 "light green" 280;; Roughly speaking, `list-colors-display' orders by (i) named shades
281 "DarkRed" 281;; of grey with hue 0.0, sorted by value (ii) named colors with
282 "dark red" 282;; saturation 1.0, sorted by hue, (iii) named non-white colors with
283 "DarkMagenta" 283;; saturation less than 1.0, sorted by hue, (iv) other named shades of
284 "dark magenta" 284;; white, (v) numbered colors sorted by hue, and (vi) numbered shades
285 "DarkCyan" 285;; of grey.
286 "dark cyan" 286
287 "DarkBlue" 287(defvar x-colors
288 "dark blue" 288 '("gray100" "gray99" "gray98" "gray97" "gray96" "gray95" "gray94" "gray93" "gray92"
289 "DarkGray" 289 "gray91" "gray90" "gray89" "gray88" "gray87" "gray86" "gray85" "gray84" "gray83"
290 "dark gray" 290 "gray82" "gray81" "gray80" "gray79" "gray78" "gray77" "gray76" "gray75" "gray74"
291 "DarkGrey" 291 "gray73" "gray72" "gray71" "gray70" "gray69" "gray68" "gray67" "gray66" "gray65"
292 "dark grey" 292 "gray64" "gray63" "gray62" "gray61" "gray60" "gray59" "gray58" "gray57" "gray56"
293 "grey100" 293 "gray55" "gray54" "gray53" "gray52" "gray51" "gray50" "gray49" "gray48" "gray47"
294 "gray100" 294 "gray46" "gray45" "gray44" "gray43" "gray42" "gray41" "gray40" "gray39" "gray38"
295 "grey99" 295 "gray37" "gray36" "gray35" "gray34" "gray33" "gray32" "gray31" "gray30" "gray29"
296 "gray99" 296 "gray28" "gray27" "gray26" "gray25" "gray24" "gray23" "gray22" "gray21" "gray20"
297 "grey98" 297 "gray19" "gray18" "gray17" "gray16" "gray15" "gray14" "gray13" "gray12" "gray11"
298 "gray98" 298 "gray10" "gray9" "gray8" "gray7" "gray6" "gray5" "gray4" "gray3" "gray2" "gray1"
299 "grey97" 299 "gray0" "LightPink1" "LightPink2" "LightPink3" "LightPink4" "pink1" "pink2" "pink3"
300 "gray97" 300 "pink4" "PaleVioletRed1" "PaleVioletRed2" "PaleVioletRed3" "PaleVioletRed4"
301 "grey96" 301 "LavenderBlush1" "LavenderBlush2" "LavenderBlush3" "LavenderBlush4" "VioletRed1"
302 "gray96" 302 "VioletRed2" "VioletRed3" "VioletRed4" "HotPink1" "HotPink2" "HotPink3" "HotPink4"
303 "grey95" 303 "DeepPink1" "DeepPink2" "DeepPink3" "DeepPink4" "maroon1" "maroon2" "maroon3"
304 "gray95" 304 "maroon4" "orchid1" "orchid2" "orchid3" "orchid4" "plum1" "plum2" "plum3" "plum4"
305 "grey94" 305 "thistle1" "thistle2" "thistle3" "thistle4" "MediumOrchid1" "MediumOrchid2"
306 "gray94" 306 "MediumOrchid3" "MediumOrchid4" "DarkOrchid1" "DarkOrchid2" "DarkOrchid3"
307 "grey93" 307 "DarkOrchid4" "purple1" "purple2" "purple3" "purple4" "MediumPurple1"
308 "gray93" 308 "MediumPurple2" "MediumPurple3" "MediumPurple4" "SlateBlue1" "SlateBlue2"
309 "grey92" 309 "SlateBlue3" "SlateBlue4" "RoyalBlue1" "RoyalBlue2" "RoyalBlue3" "RoyalBlue4"
310 "gray92" 310 "LightSteelBlue1" "LightSteelBlue2" "LightSteelBlue3" "LightSteelBlue4" "SlateGray1"
311 "grey91" 311 "SlateGray2" "SlateGray3" "SlateGray4" "DodgerBlue1" "DodgerBlue2" "DodgerBlue3"
312 "gray91" 312 "DodgerBlue4" "SteelBlue1" "SteelBlue2" "SteelBlue3" "SteelBlue4" "SkyBlue1"
313 "grey90" 313 "SkyBlue2" "SkyBlue3" "SkyBlue4" "LightSkyBlue1" "LightSkyBlue2" "LightSkyBlue3"
314 "gray90" 314 "LightSkyBlue4" "LightBlue1" "LightBlue2" "LightBlue3" "LightBlue4" "CadetBlue1"
315 "grey89" 315 "CadetBlue2" "CadetBlue3" "CadetBlue4" "azure1" "azure2" "azure3" "azure4"
316 "gray89" 316 "LightCyan1" "LightCyan2" "LightCyan3" "LightCyan4" "PaleTurquoise1"
317 "grey88" 317 "PaleTurquoise2" "PaleTurquoise3" "PaleTurquoise4" "DarkSlateGray1" "DarkSlateGray2"
318 "gray88" 318 "DarkSlateGray3" "DarkSlateGray4" "aquamarine1" "aquamarine2" "aquamarine3"
319 "grey87" 319 "aquamarine4" "SeaGreen1" "SeaGreen2" "SeaGreen3" "SeaGreen4" "honeydew1"
320 "gray87" 320 "honeydew2" "honeydew3" "honeydew4" "DarkSeaGreen1" "DarkSeaGreen2" "DarkSeaGreen3"
321 "grey86" 321 "DarkSeaGreen4" "PaleGreen1" "PaleGreen2" "PaleGreen3" "PaleGreen4"
322 "gray86" 322 "DarkOliveGreen1" "DarkOliveGreen2" "DarkOliveGreen3" "DarkOliveGreen4" "OliveDrab1"
323 "grey85" 323 "OliveDrab2" "OliveDrab3" "OliveDrab4" "ivory1" "ivory2" "ivory3" "ivory4"
324 "gray85" 324 "LightYellow1" "LightYellow2" "LightYellow3" "LightYellow4" "khaki1" "khaki2"
325 "grey84" 325 "khaki3" "khaki4" "LemonChiffon1" "LemonChiffon2" "LemonChiffon3" "LemonChiffon4"
326 "gray84" 326 "LightGoldenrod1" "LightGoldenrod2" "LightGoldenrod3" "LightGoldenrod4" "cornsilk1"
327 "grey83" 327 "cornsilk2" "cornsilk3" "cornsilk4" "goldenrod1" "goldenrod2" "goldenrod3"
328 "gray83" 328 "goldenrod4" "DarkGoldenrod1" "DarkGoldenrod2" "DarkGoldenrod3" "DarkGoldenrod4"
329 "grey82" 329 "wheat1" "wheat2" "wheat3" "wheat4" "NavajoWhite1" "NavajoWhite2" "NavajoWhite3"
330 "gray82" 330 "NavajoWhite4" "burlywood1" "burlywood2" "burlywood3" "burlywood4" "AntiqueWhite1"
331 "grey81" 331 "AntiqueWhite2" "AntiqueWhite3" "AntiqueWhite4" "bisque1" "bisque2" "bisque3"
332 "gray81" 332 "bisque4" "tan1" "tan2" "tan3" "tan4" "PeachPuff1" "PeachPuff2" "PeachPuff3"
333 "grey80" 333 "PeachPuff4" "seashell1" "seashell2" "seashell3" "seashell4" "chocolate1"
334 "gray80" 334 "chocolate2" "chocolate3" "chocolate4" "sienna1" "sienna2" "sienna3" "sienna4"
335 "grey79" 335 "LightSalmon1" "LightSalmon2" "LightSalmon3" "LightSalmon4" "salmon1" "salmon2"
336 "gray79" 336 "salmon3" "salmon4" "coral1" "coral2" "coral3" "coral4" "tomato1" "tomato2"
337 "grey78" 337 "tomato3" "tomato4" "MistyRose1" "MistyRose2" "MistyRose3" "MistyRose4" "snow1"
338 "gray78" 338 "snow2" "snow3" "snow4" "RosyBrown1" "RosyBrown2" "RosyBrown3" "RosyBrown4"
339 "grey77" 339 "IndianRed1" "IndianRed2" "IndianRed3" "IndianRed4" "firebrick1" "firebrick2"
340 "gray77" 340 "firebrick3" "firebrick4" "brown1" "brown2" "brown3" "brown4" "magenta1" "magenta2"
341 "grey76" 341 "magenta3" "magenta4" "blue1" "blue2" "blue3" "blue4" "DeepSkyBlue1" "DeepSkyBlue2"
342 "gray76" 342 "DeepSkyBlue3" "DeepSkyBlue4" "turquoise1" "turquoise2" "turquoise3" "turquoise4"
343 "grey75" 343 "cyan1" "cyan2" "cyan3" "cyan4" "SpringGreen1" "SpringGreen2" "SpringGreen3"
344 "gray75" 344 "SpringGreen4" "green1" "green2" "green3" "green4" "chartreuse1" "chartreuse2"
345 "grey74" 345 "chartreuse3" "chartreuse4" "yellow1" "yellow2" "yellow3" "yellow4" "gold1" "gold2"
346 "gray74" 346 "gold3" "gold4" "orange1" "orange2" "orange3" "orange4" "DarkOrange1" "DarkOrange2"
347 "grey73" 347 "DarkOrange3" "DarkOrange4" "OrangeRed1" "OrangeRed2" "OrangeRed3" "OrangeRed4"
348 "gray73" 348 "red1" "red2" "red3" "red4" "lavender blush" "ghost white" "lavender" "alice blue"
349 "grey72" 349 "azure" "light cyan" "mint cream" "honeydew" "ivory" "light goldenrod yellow"
350 "gray72" 350 "light yellow" "beige" "floral white" "old lace" "blanched almond" "moccasin"
351 "grey71" 351 "papaya whip" "bisque" "antique white" "linen" "peach puff" "seashell" "misty rose"
352 "gray71" 352 "snow" "light pink" "pink" "hot pink" "deep pink" "maroon" "pale violet red"
353 "grey70" 353 "violet red" "medium violet red" "violet" "plum" "thistle" "orchid" "medium orchid"
354 "gray70" 354 "dark orchid" "purple" "blue violet" "medium purple" "light slate blue"
355 "grey69" 355 "medium slate blue" "slate blue" "dark slate blue" "midnight blue" "navy"
356 "gray69" 356 "dark blue" "light steel blue" "cornflower blue" "dodger blue" "royal blue"
357 "grey68" 357 "light slate gray" "slate gray" "dark slate gray" "steel blue" "cadet blue"
358 "gray68" 358 "light sky blue" "sky blue" "light blue" "powder blue" "pale turquoise"
359 "grey67" 359 "medium turquoise" "dark cyan" "aquamarine" "medium aquamarine" "light sea green"
360 "gray67" 360 "medium sea green" "sea green" "dark sea green" "pale green" "lime green"
361 "grey66" 361 "forest green" "light green" "green yellow" "yellow green" "olive drab"
362 "gray66" 362 "dark olive green" "lemon chiffon" "khaki" "dark khaki" "cornsilk"
363 "grey65" 363 "pale goldenrod" "light goldenrod" "goldenrod" "dark goldenrod" "wheat"
364 "gray65" 364 "navajo white" "tan" "burlywood" "sandy brown" "peru" "chocolate" "saddle brown"
365 "grey64" 365 "sienna" "rosy brown" "dark salmon" "coral" "tomato" "light salmon" "salmon"
366 "gray64" 366 "light coral" "indian red" "firebrick" "brown" "dark red" "magenta"
367 "grey63" 367 "dark magenta" "dark violet" "medium blue" "blue" "deep sky blue" "turquoise"
368 "gray63" 368 "cyan" "medium spring green" "spring green" "green" "lawn green" "chartreuse"
369 "grey62" 369 "yellow" "gold" "orange" "dark orange" "orange red" "red" "white" "white smoke"
370 "gray62" 370 "gainsboro" "light grey" "gray" "dark grey" "dim gray" "black" )
371 "grey61"
372 "gray61"
373 "grey60"
374 "gray60"
375 "grey59"
376 "gray59"
377 "grey58"
378 "gray58"
379 "grey57"
380 "gray57"
381 "grey56"
382 "gray56"
383 "grey55"
384 "gray55"
385 "grey54"
386 "gray54"
387 "grey53"
388 "gray53"
389 "grey52"
390 "gray52"
391 "grey51"
392 "gray51"
393 "grey50"
394 "gray50"
395 "grey49"
396 "gray49"
397 "grey48"
398 "gray48"
399 "grey47"
400 "gray47"
401 "grey46"
402 "gray46"
403 "grey45"
404 "gray45"
405 "grey44"
406 "gray44"
407 "grey43"
408 "gray43"
409 "grey42"
410 "gray42"
411 "grey41"
412 "gray41"
413 "grey40"
414 "gray40"
415 "grey39"
416 "gray39"
417 "grey38"
418 "gray38"
419 "grey37"
420 "gray37"
421 "grey36"
422 "gray36"
423 "grey35"
424 "gray35"
425 "grey34"
426 "gray34"
427 "grey33"
428 "gray33"
429 "grey32"
430 "gray32"
431 "grey31"
432 "gray31"
433 "grey30"
434 "gray30"
435 "grey29"
436 "gray29"
437 "grey28"
438 "gray28"
439 "grey27"
440 "gray27"
441 "grey26"
442 "gray26"
443 "grey25"
444 "gray25"
445 "grey24"
446 "gray24"
447 "grey23"
448 "gray23"
449 "grey22"
450 "gray22"
451 "grey21"
452 "gray21"
453 "grey20"
454 "gray20"
455 "grey19"
456 "gray19"
457 "grey18"
458 "gray18"
459 "grey17"
460 "gray17"
461 "grey16"
462 "gray16"
463 "grey15"
464 "gray15"
465 "grey14"
466 "gray14"
467 "grey13"
468 "gray13"
469 "grey12"
470 "gray12"
471 "grey11"
472 "gray11"
473 "grey10"
474 "gray10"
475 "grey9"
476 "gray9"
477 "grey8"
478 "gray8"
479 "grey7"
480 "gray7"
481 "grey6"
482 "gray6"
483 "grey5"
484 "gray5"
485 "grey4"
486 "gray4"
487 "grey3"
488 "gray3"
489 "grey2"
490 "gray2"
491 "grey1"
492 "gray1"
493 "grey0"
494 "gray0"
495 "thistle4"
496 "thistle3"
497 "thistle2"
498 "thistle1"
499 "MediumPurple4"
500 "MediumPurple3"
501 "MediumPurple2"
502 "MediumPurple1"
503 "purple4"
504 "purple3"
505 "purple2"
506 "purple1"
507 "DarkOrchid4"
508 "DarkOrchid3"
509 "DarkOrchid2"
510 "DarkOrchid1"
511 "MediumOrchid4"
512 "MediumOrchid3"
513 "MediumOrchid2"
514 "MediumOrchid1"
515 "plum4"
516 "plum3"
517 "plum2"
518 "plum1"
519 "orchid4"
520 "orchid3"
521 "orchid2"
522 "orchid1"
523 "magenta4"
524 "magenta3"
525 "magenta2"
526 "magenta1"
527 "VioletRed4"
528 "VioletRed3"
529 "VioletRed2"
530 "VioletRed1"
531 "maroon4"
532 "maroon3"
533 "maroon2"
534 "maroon1"
535 "PaleVioletRed4"
536 "PaleVioletRed3"
537 "PaleVioletRed2"
538 "PaleVioletRed1"
539 "LightPink4"
540 "LightPink3"
541 "LightPink2"
542 "LightPink1"
543 "pink4"
544 "pink3"
545 "pink2"
546 "pink1"
547 "HotPink4"
548 "HotPink3"
549 "HotPink2"
550 "HotPink1"
551 "DeepPink4"
552 "DeepPink3"
553 "DeepPink2"
554 "DeepPink1"
555 "red4"
556 "red3"
557 "red2"
558 "red1"
559 "OrangeRed4"
560 "OrangeRed3"
561 "OrangeRed2"
562 "OrangeRed1"
563 "tomato4"
564 "tomato3"
565 "tomato2"
566 "tomato1"
567 "coral4"
568 "coral3"
569 "coral2"
570 "coral1"
571 "DarkOrange4"
572 "DarkOrange3"
573 "DarkOrange2"
574 "DarkOrange1"
575 "orange4"
576 "orange3"
577 "orange2"
578 "orange1"
579 "LightSalmon4"
580 "LightSalmon3"
581 "LightSalmon2"
582 "LightSalmon1"
583 "salmon4"
584 "salmon3"
585 "salmon2"
586 "salmon1"
587 "brown4"
588 "brown3"
589 "brown2"
590 "brown1"
591 "firebrick4"
592 "firebrick3"
593 "firebrick2"
594 "firebrick1"
595 "chocolate4"
596 "chocolate3"
597 "chocolate2"
598 "chocolate1"
599 "tan4"
600 "tan3"
601 "tan2"
602 "tan1"
603 "wheat4"
604 "wheat3"
605 "wheat2"
606 "wheat1"
607 "burlywood4"
608 "burlywood3"
609 "burlywood2"
610 "burlywood1"
611 "sienna4"
612 "sienna3"
613 "sienna2"
614 "sienna1"
615 "IndianRed4"
616 "IndianRed3"
617 "IndianRed2"
618 "IndianRed1"
619 "RosyBrown4"
620 "RosyBrown3"
621 "RosyBrown2"
622 "RosyBrown1"
623 "DarkGoldenrod4"
624 "DarkGoldenrod3"
625 "DarkGoldenrod2"
626 "DarkGoldenrod1"
627 "goldenrod4"
628 "goldenrod3"
629 "goldenrod2"
630 "goldenrod1"
631 "gold4"
632 "gold3"
633 "gold2"
634 "gold1"
635 "yellow4"
636 "yellow3"
637 "yellow2"
638 "yellow1"
639 "LightYellow4"
640 "LightYellow3"
641 "LightYellow2"
642 "LightYellow1"
643 "LightGoldenrod4"
644 "LightGoldenrod3"
645 "LightGoldenrod2"
646 "LightGoldenrod1"
647 "khaki4"
648 "khaki3"
649 "khaki2"
650 "khaki1"
651 "DarkOliveGreen4"
652 "DarkOliveGreen3"
653 "DarkOliveGreen2"
654 "DarkOliveGreen1"
655 "OliveDrab4"
656 "OliveDrab3"
657 "OliveDrab2"
658 "OliveDrab1"
659 "chartreuse4"
660 "chartreuse3"
661 "chartreuse2"
662 "chartreuse1"
663 "green4"
664 "green3"
665 "green2"
666 "green1"
667 "SpringGreen4"
668 "SpringGreen3"
669 "SpringGreen2"
670 "SpringGreen1"
671 "PaleGreen4"
672 "PaleGreen3"
673 "PaleGreen2"
674 "PaleGreen1"
675 "SeaGreen4"
676 "SeaGreen3"
677 "SeaGreen2"
678 "SeaGreen1"
679 "DarkSeaGreen4"
680 "DarkSeaGreen3"
681 "DarkSeaGreen2"
682 "DarkSeaGreen1"
683 "aquamarine4"
684 "aquamarine3"
685 "aquamarine2"
686 "aquamarine1"
687 "DarkSlateGray4"
688 "DarkSlateGray3"
689 "DarkSlateGray2"
690 "DarkSlateGray1"
691 "cyan4"
692 "cyan3"
693 "cyan2"
694 "cyan1"
695 "turquoise4"
696 "turquoise3"
697 "turquoise2"
698 "turquoise1"
699 "CadetBlue4"
700 "CadetBlue3"
701 "CadetBlue2"
702 "CadetBlue1"
703 "PaleTurquoise4"
704 "PaleTurquoise3"
705 "PaleTurquoise2"
706 "PaleTurquoise1"
707 "LightCyan4"
708 "LightCyan3"
709 "LightCyan2"
710 "LightCyan1"
711 "LightBlue4"
712 "LightBlue3"
713 "LightBlue2"
714 "LightBlue1"
715 "LightSteelBlue4"
716 "LightSteelBlue3"
717 "LightSteelBlue2"
718 "LightSteelBlue1"
719 "SlateGray4"
720 "SlateGray3"
721 "SlateGray2"
722 "SlateGray1"
723 "LightSkyBlue4"
724 "LightSkyBlue3"
725 "LightSkyBlue2"
726 "LightSkyBlue1"
727 "SkyBlue4"
728 "SkyBlue3"
729 "SkyBlue2"
730 "SkyBlue1"
731 "DeepSkyBlue4"
732 "DeepSkyBlue3"
733 "DeepSkyBlue2"
734 "DeepSkyBlue1"
735 "SteelBlue4"
736 "SteelBlue3"
737 "SteelBlue2"
738 "SteelBlue1"
739 "DodgerBlue4"
740 "DodgerBlue3"
741 "DodgerBlue2"
742 "DodgerBlue1"
743 "blue4"
744 "blue3"
745 "blue2"
746 "blue1"
747 "RoyalBlue4"
748 "RoyalBlue3"
749 "RoyalBlue2"
750 "RoyalBlue1"
751 "SlateBlue4"
752 "SlateBlue3"
753 "SlateBlue2"
754 "SlateBlue1"
755 "azure4"
756 "azure3"
757 "azure2"
758 "azure1"
759 "MistyRose4"
760 "MistyRose3"
761 "MistyRose2"
762 "MistyRose1"
763 "LavenderBlush4"
764 "LavenderBlush3"
765 "LavenderBlush2"
766 "LavenderBlush1"
767 "honeydew4"
768 "honeydew3"
769 "honeydew2"
770 "honeydew1"
771 "ivory4"
772 "ivory3"
773 "ivory2"
774 "ivory1"
775 "cornsilk4"
776 "cornsilk3"
777 "cornsilk2"
778 "cornsilk1"
779 "LemonChiffon4"
780 "LemonChiffon3"
781 "LemonChiffon2"
782 "LemonChiffon1"
783 "NavajoWhite4"
784 "NavajoWhite3"
785 "NavajoWhite2"
786 "NavajoWhite1"
787 "PeachPuff4"
788 "PeachPuff3"
789 "PeachPuff2"
790 "PeachPuff1"
791 "bisque4"
792 "bisque3"
793 "bisque2"
794 "bisque1"
795 "AntiqueWhite4"
796 "AntiqueWhite3"
797 "AntiqueWhite2"
798 "AntiqueWhite1"
799 "seashell4"
800 "seashell3"
801 "seashell2"
802 "seashell1"
803 "snow4"
804 "snow3"
805 "snow2"
806 "snow1"
807 "thistle"
808 "MediumPurple"
809 "medium purple"
810 "purple"
811 "BlueViolet"
812 "blue violet"
813 "DarkViolet"
814 "dark violet"
815 "DarkOrchid"
816 "dark orchid"
817 "MediumOrchid"
818 "medium orchid"
819 "orchid"
820 "plum"
821 "violet"
822 "magenta"
823 "VioletRed"
824 "violet red"
825 "MediumVioletRed"
826 "medium violet red"
827 "maroon"
828 "PaleVioletRed"
829 "pale violet red"
830 "LightPink"
831 "light pink"
832 "pink"
833 "DeepPink"
834 "deep pink"
835 "HotPink"
836 "hot pink"
837 "red"
838 "OrangeRed"
839 "orange red"
840 "tomato"
841 "LightCoral"
842 "light coral"
843 "coral"
844 "DarkOrange"
845 "dark orange"
846 "orange"
847 "LightSalmon"
848 "light salmon"
849 "salmon"
850 "DarkSalmon"
851 "dark salmon"
852 "brown"
853 "firebrick"
854 "chocolate"
855 "tan"
856 "SandyBrown"
857 "sandy brown"
858 "wheat"
859 "beige"
860 "burlywood"
861 "peru"
862 "sienna"
863 "SaddleBrown"
864 "saddle brown"
865 "IndianRed"
866 "indian red"
867 "RosyBrown"
868 "rosy brown"
869 "DarkGoldenrod"
870 "dark goldenrod"
871 "goldenrod"
872 "LightGoldenrod"
873 "light goldenrod"
874 "gold"
875 "yellow"
876 "LightYellow"
877 "light yellow"
878 "LightGoldenrodYellow"
879 "light goldenrod yellow"
880 "PaleGoldenrod"
881 "pale goldenrod"
882 "khaki"
883 "DarkKhaki"
884 "dark khaki"
885 "OliveDrab"
886 "olive drab"
887 "ForestGreen"
888 "forest green"
889 "YellowGreen"
890 "yellow green"
891 "LimeGreen"
892 "lime green"
893 "GreenYellow"
894 "green yellow"
895 "MediumSpringGreen"
896 "medium spring green"
897 "chartreuse"
898 "green"
899 "LawnGreen"
900 "lawn green"
901 "SpringGreen"
902 "spring green"
903 "PaleGreen"
904 "pale green"
905 "LightSeaGreen"
906 "light sea green"
907 "MediumSeaGreen"
908 "medium sea green"
909 "SeaGreen"
910 "sea green"
911 "DarkSeaGreen"
912 "dark sea green"
913 "DarkOliveGreen"
914 "dark olive green"
915 "DarkGreen"
916 "dark green"
917 "aquamarine"
918 "MediumAquamarine"
919 "medium aquamarine"
920 "CadetBlue"
921 "cadet blue"
922 "LightCyan"
923 "light cyan"
924 "cyan"
925 "turquoise"
926 "MediumTurquoise"
927 "medium turquoise"
928 "DarkTurquoise"
929 "dark turquoise"
930 "PaleTurquoise"
931 "pale turquoise"
932 "PowderBlue"
933 "powder blue"
934 "LightBlue"
935 "light blue"
936 "LightSteelBlue"
937 "light steel blue"
938 "SteelBlue"
939 "steel blue"
940 "LightSkyBlue"
941 "light sky blue"
942 "SkyBlue"
943 "sky blue"
944 "DeepSkyBlue"
945 "deep sky blue"
946 "DodgerBlue"
947 "dodger blue"
948 "blue"
949 "RoyalBlue"
950 "royal blue"
951 "MediumBlue"
952 "medium blue"
953 "LightSlateBlue"
954 "light slate blue"
955 "MediumSlateBlue"
956 "medium slate blue"
957 "SlateBlue"
958 "slate blue"
959 "DarkSlateBlue"
960 "dark slate blue"
961 "CornflowerBlue"
962 "cornflower blue"
963 "NavyBlue"
964 "navy blue"
965 "navy"
966 "MidnightBlue"
967 "midnight blue"
968 "LightGray"
969 "light gray"
970 "LightGrey"
971 "light grey"
972 "grey"
973 "gray"
974 "LightSlateGrey"
975 "light slate grey"
976 "LightSlateGray"
977 "light slate gray"
978 "SlateGrey"
979 "slate grey"
980 "SlateGray"
981 "slate gray"
982 "DimGrey"
983 "dim grey"
984 "DimGray"
985 "dim gray"
986 "DarkSlateGrey"
987 "dark slate grey"
988 "DarkSlateGray"
989 "dark slate gray"
990 "black"
991 "white"
992 "MistyRose"
993 "misty rose"
994 "LavenderBlush"
995 "lavender blush"
996 "lavender"
997 "AliceBlue"
998 "alice blue"
999 "azure"
1000 "MintCream"
1001 "mint cream"
1002 "honeydew"
1003 "seashell"
1004 "LemonChiffon"
1005 "lemon chiffon"
1006 "ivory"
1007 "cornsilk"
1008 "moccasin"
1009 "NavajoWhite"
1010 "navajo white"
1011 "PeachPuff"
1012 "peach puff"
1013 "bisque"
1014 "BlanchedAlmond"
1015 "blanched almond"
1016 "PapayaWhip"
1017 "papaya whip"
1018 "AntiqueWhite"
1019 "antique white"
1020 "linen"
1021 "OldLace"
1022 "old lace"
1023 "FloralWhite"
1024 "floral white"
1025 "gainsboro"
1026 "WhiteSmoke"
1027 "white smoke"
1028 "GhostWhite"
1029 "ghost white"
1030 "snow")
1031 "The list of X colors from the `rgb.txt' file. 371 "The list of X colors from the `rgb.txt' file.
1032XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp") 372XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
1033 373
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index 0db081532d9..57a88d24571 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -414,759 +414,99 @@ exists."
414;; 414;;
415;; Available colors 415;; Available colors
416;; 416;;
417 417;; The ordering of the colors is chosen for the user's convenience in
418(defvar x-colors '("LightGreen" 418;; `list-colors-display', which displays the reverse of this list.
419 "light green" 419;; Roughly speaking, `list-colors-display' orders by (i) named shades
420 "DarkRed" 420;; of grey with hue 0.0, sorted by value (ii) named colors with
421 "dark red" 421;; saturation 1.0, sorted by hue, (iii) named non-white colors with
422 "DarkMagenta" 422;; saturation less than 1.0, sorted by hue, (iv) other named shades of
423 "dark magenta" 423;; white, (v) numbered colors sorted by hue, and (vi) numbered shades
424 "DarkCyan" 424;; of grey.
425 "dark cyan" 425
426 "DarkBlue" 426(defvar x-colors
427 "dark blue" 427 '("gray100" "gray99" "gray98" "gray97" "gray96" "gray95" "gray94" "gray93" "gray92"
428 "DarkGray" 428 "gray91" "gray90" "gray89" "gray88" "gray87" "gray86" "gray85" "gray84" "gray83"
429 "dark gray" 429 "gray82" "gray81" "gray80" "gray79" "gray78" "gray77" "gray76" "gray75" "gray74"
430 "DarkGrey" 430 "gray73" "gray72" "gray71" "gray70" "gray69" "gray68" "gray67" "gray66" "gray65"
431 "dark grey" 431 "gray64" "gray63" "gray62" "gray61" "gray60" "gray59" "gray58" "gray57" "gray56"
432 "grey100" 432 "gray55" "gray54" "gray53" "gray52" "gray51" "gray50" "gray49" "gray48" "gray47"
433 "gray100" 433 "gray46" "gray45" "gray44" "gray43" "gray42" "gray41" "gray40" "gray39" "gray38"
434 "grey99" 434 "gray37" "gray36" "gray35" "gray34" "gray33" "gray32" "gray31" "gray30" "gray29"
435 "gray99" 435 "gray28" "gray27" "gray26" "gray25" "gray24" "gray23" "gray22" "gray21" "gray20"
436 "grey98" 436 "gray19" "gray18" "gray17" "gray16" "gray15" "gray14" "gray13" "gray12" "gray11"
437 "gray98" 437 "gray10" "gray9" "gray8" "gray7" "gray6" "gray5" "gray4" "gray3" "gray2" "gray1"
438 "grey97" 438 "gray0" "LightPink1" "LightPink2" "LightPink3" "LightPink4" "pink1" "pink2" "pink3"
439 "gray97" 439 "pink4" "PaleVioletRed1" "PaleVioletRed2" "PaleVioletRed3" "PaleVioletRed4"
440 "grey96" 440 "LavenderBlush1" "LavenderBlush2" "LavenderBlush3" "LavenderBlush4" "VioletRed1"
441 "gray96" 441 "VioletRed2" "VioletRed3" "VioletRed4" "HotPink1" "HotPink2" "HotPink3" "HotPink4"
442 "grey95" 442 "DeepPink1" "DeepPink2" "DeepPink3" "DeepPink4" "maroon1" "maroon2" "maroon3"
443 "gray95" 443 "maroon4" "orchid1" "orchid2" "orchid3" "orchid4" "plum1" "plum2" "plum3" "plum4"
444 "grey94" 444 "thistle1" "thistle2" "thistle3" "thistle4" "MediumOrchid1" "MediumOrchid2"
445 "gray94" 445 "MediumOrchid3" "MediumOrchid4" "DarkOrchid1" "DarkOrchid2" "DarkOrchid3"
446 "grey93" 446 "DarkOrchid4" "purple1" "purple2" "purple3" "purple4" "MediumPurple1"
447 "gray93" 447 "MediumPurple2" "MediumPurple3" "MediumPurple4" "SlateBlue1" "SlateBlue2"
448 "grey92" 448 "SlateBlue3" "SlateBlue4" "RoyalBlue1" "RoyalBlue2" "RoyalBlue3" "RoyalBlue4"
449 "gray92" 449 "LightSteelBlue1" "LightSteelBlue2" "LightSteelBlue3" "LightSteelBlue4" "SlateGray1"
450 "grey91" 450 "SlateGray2" "SlateGray3" "SlateGray4" "DodgerBlue1" "DodgerBlue2" "DodgerBlue3"
451 "gray91" 451 "DodgerBlue4" "SteelBlue1" "SteelBlue2" "SteelBlue3" "SteelBlue4" "SkyBlue1"
452 "grey90" 452 "SkyBlue2" "SkyBlue3" "SkyBlue4" "LightSkyBlue1" "LightSkyBlue2" "LightSkyBlue3"
453 "gray90" 453 "LightSkyBlue4" "LightBlue1" "LightBlue2" "LightBlue3" "LightBlue4" "CadetBlue1"
454 "grey89" 454 "CadetBlue2" "CadetBlue3" "CadetBlue4" "azure1" "azure2" "azure3" "azure4"
455 "gray89" 455 "LightCyan1" "LightCyan2" "LightCyan3" "LightCyan4" "PaleTurquoise1"
456 "grey88" 456 "PaleTurquoise2" "PaleTurquoise3" "PaleTurquoise4" "DarkSlateGray1" "DarkSlateGray2"
457 "gray88" 457 "DarkSlateGray3" "DarkSlateGray4" "aquamarine1" "aquamarine2" "aquamarine3"
458 "grey87" 458 "aquamarine4" "SeaGreen1" "SeaGreen2" "SeaGreen3" "SeaGreen4" "honeydew1"
459 "gray87" 459 "honeydew2" "honeydew3" "honeydew4" "DarkSeaGreen1" "DarkSeaGreen2" "DarkSeaGreen3"
460 "grey86" 460 "DarkSeaGreen4" "PaleGreen1" "PaleGreen2" "PaleGreen3" "PaleGreen4"
461 "gray86" 461 "DarkOliveGreen1" "DarkOliveGreen2" "DarkOliveGreen3" "DarkOliveGreen4" "OliveDrab1"
462 "grey85" 462 "OliveDrab2" "OliveDrab3" "OliveDrab4" "ivory1" "ivory2" "ivory3" "ivory4"
463 "gray85" 463 "LightYellow1" "LightYellow2" "LightYellow3" "LightYellow4" "khaki1" "khaki2"
464 "grey84" 464 "khaki3" "khaki4" "LemonChiffon1" "LemonChiffon2" "LemonChiffon3" "LemonChiffon4"
465 "gray84" 465 "LightGoldenrod1" "LightGoldenrod2" "LightGoldenrod3" "LightGoldenrod4" "cornsilk1"
466 "grey83" 466 "cornsilk2" "cornsilk3" "cornsilk4" "goldenrod1" "goldenrod2" "goldenrod3"
467 "gray83" 467 "goldenrod4" "DarkGoldenrod1" "DarkGoldenrod2" "DarkGoldenrod3" "DarkGoldenrod4"
468 "grey82" 468 "wheat1" "wheat2" "wheat3" "wheat4" "NavajoWhite1" "NavajoWhite2" "NavajoWhite3"
469 "gray82" 469 "NavajoWhite4" "burlywood1" "burlywood2" "burlywood3" "burlywood4" "AntiqueWhite1"
470 "grey81" 470 "AntiqueWhite2" "AntiqueWhite3" "AntiqueWhite4" "bisque1" "bisque2" "bisque3"
471 "gray81" 471 "bisque4" "tan1" "tan2" "tan3" "tan4" "PeachPuff1" "PeachPuff2" "PeachPuff3"
472 "grey80" 472 "PeachPuff4" "seashell1" "seashell2" "seashell3" "seashell4" "chocolate1"
473 "gray80" 473 "chocolate2" "chocolate3" "chocolate4" "sienna1" "sienna2" "sienna3" "sienna4"
474 "grey79" 474 "LightSalmon1" "LightSalmon2" "LightSalmon3" "LightSalmon4" "salmon1" "salmon2"
475 "gray79" 475 "salmon3" "salmon4" "coral1" "coral2" "coral3" "coral4" "tomato1" "tomato2"
476 "grey78" 476 "tomato3" "tomato4" "MistyRose1" "MistyRose2" "MistyRose3" "MistyRose4" "snow1"
477 "gray78" 477 "snow2" "snow3" "snow4" "RosyBrown1" "RosyBrown2" "RosyBrown3" "RosyBrown4"
478 "grey77" 478 "IndianRed1" "IndianRed2" "IndianRed3" "IndianRed4" "firebrick1" "firebrick2"
479 "gray77" 479 "firebrick3" "firebrick4" "brown1" "brown2" "brown3" "brown4" "magenta1" "magenta2"
480 "grey76" 480 "magenta3" "magenta4" "blue1" "blue2" "blue3" "blue4" "DeepSkyBlue1" "DeepSkyBlue2"
481 "gray76" 481 "DeepSkyBlue3" "DeepSkyBlue4" "turquoise1" "turquoise2" "turquoise3" "turquoise4"
482 "grey75" 482 "cyan1" "cyan2" "cyan3" "cyan4" "SpringGreen1" "SpringGreen2" "SpringGreen3"
483 "gray75" 483 "SpringGreen4" "green1" "green2" "green3" "green4" "chartreuse1" "chartreuse2"
484 "grey74" 484 "chartreuse3" "chartreuse4" "yellow1" "yellow2" "yellow3" "yellow4" "gold1" "gold2"
485 "gray74" 485 "gold3" "gold4" "orange1" "orange2" "orange3" "orange4" "DarkOrange1" "DarkOrange2"
486 "grey73" 486 "DarkOrange3" "DarkOrange4" "OrangeRed1" "OrangeRed2" "OrangeRed3" "OrangeRed4"
487 "gray73" 487 "red1" "red2" "red3" "red4" "lavender blush" "ghost white" "lavender" "alice blue"
488 "grey72" 488 "azure" "light cyan" "mint cream" "honeydew" "ivory" "light goldenrod yellow"
489 "gray72" 489 "light yellow" "beige" "floral white" "old lace" "blanched almond" "moccasin"
490 "grey71" 490 "papaya whip" "bisque" "antique white" "linen" "peach puff" "seashell" "misty rose"
491 "gray71" 491 "snow" "light pink" "pink" "hot pink" "deep pink" "maroon" "pale violet red"
492 "grey70" 492 "violet red" "medium violet red" "violet" "plum" "thistle" "orchid" "medium orchid"
493 "gray70" 493 "dark orchid" "purple" "blue violet" "medium purple" "light slate blue"
494 "grey69" 494 "medium slate blue" "slate blue" "dark slate blue" "midnight blue" "navy"
495 "gray69" 495 "dark blue" "light steel blue" "cornflower blue" "dodger blue" "royal blue"
496 "grey68" 496 "light slate gray" "slate gray" "dark slate gray" "steel blue" "cadet blue"
497 "gray68" 497 "light sky blue" "sky blue" "light blue" "powder blue" "pale turquoise"
498 "grey67" 498 "medium turquoise" "dark cyan" "aquamarine" "medium aquamarine" "light sea green"
499 "gray67" 499 "medium sea green" "sea green" "dark sea green" "pale green" "lime green"
500 "grey66" 500 "forest green" "light green" "green yellow" "yellow green" "olive drab"
501 "gray66" 501 "dark olive green" "lemon chiffon" "khaki" "dark khaki" "cornsilk"
502 "grey65" 502 "pale goldenrod" "light goldenrod" "goldenrod" "dark goldenrod" "wheat"
503 "gray65" 503 "navajo white" "tan" "burlywood" "sandy brown" "peru" "chocolate" "saddle brown"
504 "grey64" 504 "sienna" "rosy brown" "dark salmon" "coral" "tomato" "light salmon" "salmon"
505 "gray64" 505 "light coral" "indian red" "firebrick" "brown" "dark red" "magenta"
506 "grey63" 506 "dark magenta" "dark violet" "medium blue" "blue" "deep sky blue" "turquoise"
507 "gray63" 507 "cyan" "medium spring green" "spring green" "green" "lawn green" "chartreuse"
508 "grey62" 508 "yellow" "gold" "orange" "dark orange" "orange red" "red" "white" "white smoke"
509 "gray62" 509 "gainsboro" "light grey" "gray" "dark grey" "dim gray" "black" )
510 "grey61"
511 "gray61"
512 "grey60"
513 "gray60"
514 "grey59"
515 "gray59"
516 "grey58"
517 "gray58"
518 "grey57"
519 "gray57"
520 "grey56"
521 "gray56"
522 "grey55"
523 "gray55"
524 "grey54"
525 "gray54"
526 "grey53"
527 "gray53"
528 "grey52"
529 "gray52"
530 "grey51"
531 "gray51"
532 "grey50"
533 "gray50"
534 "grey49"
535 "gray49"
536 "grey48"
537 "gray48"
538 "grey47"
539 "gray47"
540 "grey46"
541 "gray46"
542 "grey45"
543 "gray45"
544 "grey44"
545 "gray44"
546 "grey43"
547 "gray43"
548 "grey42"
549 "gray42"
550 "grey41"
551 "gray41"
552 "grey40"
553 "gray40"
554 "grey39"
555 "gray39"
556 "grey38"
557 "gray38"
558 "grey37"
559 "gray37"
560 "grey36"
561 "gray36"
562 "grey35"
563 "gray35"
564 "grey34"
565 "gray34"
566 "grey33"
567 "gray33"
568 "grey32"
569 "gray32"
570 "grey31"
571 "gray31"
572 "grey30"
573 "gray30"
574 "grey29"
575 "gray29"
576 "grey28"
577 "gray28"
578 "grey27"
579 "gray27"
580 "grey26"
581 "gray26"
582 "grey25"
583 "gray25"
584 "grey24"
585 "gray24"
586 "grey23"
587 "gray23"
588 "grey22"
589 "gray22"
590 "grey21"
591 "gray21"
592 "grey20"
593 "gray20"
594 "grey19"
595 "gray19"
596 "grey18"
597 "gray18"
598 "grey17"
599 "gray17"
600 "grey16"
601 "gray16"
602 "grey15"
603 "gray15"
604 "grey14"
605 "gray14"
606 "grey13"
607 "gray13"
608 "grey12"
609 "gray12"
610 "grey11"
611 "gray11"
612 "grey10"
613 "gray10"
614 "grey9"
615 "gray9"
616 "grey8"
617 "gray8"
618 "grey7"
619 "gray7"
620 "grey6"
621 "gray6"
622 "grey5"
623 "gray5"
624 "grey4"
625 "gray4"
626 "grey3"
627 "gray3"
628 "grey2"
629 "gray2"
630 "grey1"
631 "gray1"
632 "grey0"
633 "gray0"
634 "thistle4"
635 "thistle3"
636 "thistle2"
637 "thistle1"
638 "MediumPurple4"
639 "MediumPurple3"
640 "MediumPurple2"
641 "MediumPurple1"
642 "purple4"
643 "purple3"
644 "purple2"
645 "purple1"
646 "DarkOrchid4"
647 "DarkOrchid3"
648 "DarkOrchid2"
649 "DarkOrchid1"
650 "MediumOrchid4"
651 "MediumOrchid3"
652 "MediumOrchid2"
653 "MediumOrchid1"
654 "plum4"
655 "plum3"
656 "plum2"
657 "plum1"
658 "orchid4"
659 "orchid3"
660 "orchid2"
661 "orchid1"
662 "magenta4"
663 "magenta3"
664 "magenta2"
665 "magenta1"
666 "VioletRed4"
667 "VioletRed3"
668 "VioletRed2"
669 "VioletRed1"
670 "maroon4"
671 "maroon3"
672 "maroon2"
673 "maroon1"
674 "PaleVioletRed4"
675 "PaleVioletRed3"
676 "PaleVioletRed2"
677 "PaleVioletRed1"
678 "LightPink4"
679 "LightPink3"
680 "LightPink2"
681 "LightPink1"
682 "pink4"
683 "pink3"
684 "pink2"
685 "pink1"
686 "HotPink4"
687 "HotPink3"
688 "HotPink2"
689 "HotPink1"
690 "DeepPink4"
691 "DeepPink3"
692 "DeepPink2"
693 "DeepPink1"
694 "red4"
695 "red3"
696 "red2"
697 "red1"
698 "OrangeRed4"
699 "OrangeRed3"
700 "OrangeRed2"
701 "OrangeRed1"
702 "tomato4"
703 "tomato3"
704 "tomato2"
705 "tomato1"
706 "coral4"
707 "coral3"
708 "coral2"
709 "coral1"
710 "DarkOrange4"
711 "DarkOrange3"
712 "DarkOrange2"
713 "DarkOrange1"
714 "orange4"
715 "orange3"
716 "orange2"
717 "orange1"
718 "LightSalmon4"
719 "LightSalmon3"
720 "LightSalmon2"
721 "LightSalmon1"
722 "salmon4"
723 "salmon3"
724 "salmon2"
725 "salmon1"
726 "brown4"
727 "brown3"
728 "brown2"
729 "brown1"
730 "firebrick4"
731 "firebrick3"
732 "firebrick2"
733 "firebrick1"
734 "chocolate4"
735 "chocolate3"
736 "chocolate2"
737 "chocolate1"
738 "tan4"
739 "tan3"
740 "tan2"
741 "tan1"
742 "wheat4"
743 "wheat3"
744 "wheat2"
745 "wheat1"
746 "burlywood4"
747 "burlywood3"
748 "burlywood2"
749 "burlywood1"
750 "sienna4"
751 "sienna3"
752 "sienna2"
753 "sienna1"
754 "IndianRed4"
755 "IndianRed3"
756 "IndianRed2"
757 "IndianRed1"
758 "RosyBrown4"
759 "RosyBrown3"
760 "RosyBrown2"
761 "RosyBrown1"
762 "DarkGoldenrod4"
763 "DarkGoldenrod3"
764 "DarkGoldenrod2"
765 "DarkGoldenrod1"
766 "goldenrod4"
767 "goldenrod3"
768 "goldenrod2"
769 "goldenrod1"
770 "gold4"
771 "gold3"
772 "gold2"
773 "gold1"
774 "yellow4"
775 "yellow3"
776 "yellow2"
777 "yellow1"
778 "LightYellow4"
779 "LightYellow3"
780 "LightYellow2"
781 "LightYellow1"
782 "LightGoldenrod4"
783 "LightGoldenrod3"
784 "LightGoldenrod2"
785 "LightGoldenrod1"
786 "khaki4"
787 "khaki3"
788 "khaki2"
789 "khaki1"
790 "DarkOliveGreen4"
791 "DarkOliveGreen3"
792 "DarkOliveGreen2"
793 "DarkOliveGreen1"
794 "OliveDrab4"
795 "OliveDrab3"
796 "OliveDrab2"
797 "OliveDrab1"
798 "chartreuse4"
799 "chartreuse3"
800 "chartreuse2"
801 "chartreuse1"
802 "green4"
803 "green3"
804 "green2"
805 "green1"
806 "SpringGreen4"
807 "SpringGreen3"
808 "SpringGreen2"
809 "SpringGreen1"
810 "PaleGreen4"
811 "PaleGreen3"
812 "PaleGreen2"
813 "PaleGreen1"
814 "SeaGreen4"
815 "SeaGreen3"
816 "SeaGreen2"
817 "SeaGreen1"
818 "DarkSeaGreen4"
819 "DarkSeaGreen3"
820 "DarkSeaGreen2"
821 "DarkSeaGreen1"
822 "aquamarine4"
823 "aquamarine3"
824 "aquamarine2"
825 "aquamarine1"
826 "DarkSlateGray4"
827 "DarkSlateGray3"
828 "DarkSlateGray2"
829 "DarkSlateGray1"
830 "cyan4"
831 "cyan3"
832 "cyan2"
833 "cyan1"
834 "turquoise4"
835 "turquoise3"
836 "turquoise2"
837 "turquoise1"
838 "CadetBlue4"
839 "CadetBlue3"
840 "CadetBlue2"
841 "CadetBlue1"
842 "PaleTurquoise4"
843 "PaleTurquoise3"
844 "PaleTurquoise2"
845 "PaleTurquoise1"
846 "LightCyan4"
847 "LightCyan3"
848 "LightCyan2"
849 "LightCyan1"
850 "LightBlue4"
851 "LightBlue3"
852 "LightBlue2"
853 "LightBlue1"
854 "LightSteelBlue4"
855 "LightSteelBlue3"
856 "LightSteelBlue2"
857 "LightSteelBlue1"
858 "SlateGray4"
859 "SlateGray3"
860 "SlateGray2"
861 "SlateGray1"
862 "LightSkyBlue4"
863 "LightSkyBlue3"
864 "LightSkyBlue2"
865 "LightSkyBlue1"
866 "SkyBlue4"
867 "SkyBlue3"
868 "SkyBlue2"
869 "SkyBlue1"
870 "DeepSkyBlue4"
871 "DeepSkyBlue3"
872 "DeepSkyBlue2"
873 "DeepSkyBlue1"
874 "SteelBlue4"
875 "SteelBlue3"
876 "SteelBlue2"
877 "SteelBlue1"
878 "DodgerBlue4"
879 "DodgerBlue3"
880 "DodgerBlue2"
881 "DodgerBlue1"
882 "blue4"
883 "blue3"
884 "blue2"
885 "blue1"
886 "RoyalBlue4"
887 "RoyalBlue3"
888 "RoyalBlue2"
889 "RoyalBlue1"
890 "SlateBlue4"
891 "SlateBlue3"
892 "SlateBlue2"
893 "SlateBlue1"
894 "azure4"
895 "azure3"
896 "azure2"
897 "azure1"
898 "MistyRose4"
899 "MistyRose3"
900 "MistyRose2"
901 "MistyRose1"
902 "LavenderBlush4"
903 "LavenderBlush3"
904 "LavenderBlush2"
905 "LavenderBlush1"
906 "honeydew4"
907 "honeydew3"
908 "honeydew2"
909 "honeydew1"
910 "ivory4"
911 "ivory3"
912 "ivory2"
913 "ivory1"
914 "cornsilk4"
915 "cornsilk3"
916 "cornsilk2"
917 "cornsilk1"
918 "LemonChiffon4"
919 "LemonChiffon3"
920 "LemonChiffon2"
921 "LemonChiffon1"
922 "NavajoWhite4"
923 "NavajoWhite3"
924 "NavajoWhite2"
925 "NavajoWhite1"
926 "PeachPuff4"
927 "PeachPuff3"
928 "PeachPuff2"
929 "PeachPuff1"
930 "bisque4"
931 "bisque3"
932 "bisque2"
933 "bisque1"
934 "AntiqueWhite4"
935 "AntiqueWhite3"
936 "AntiqueWhite2"
937 "AntiqueWhite1"
938 "seashell4"
939 "seashell3"
940 "seashell2"
941 "seashell1"
942 "snow4"
943 "snow3"
944 "snow2"
945 "snow1"
946 "thistle"
947 "MediumPurple"
948 "medium purple"
949 "purple"
950 "BlueViolet"
951 "blue violet"
952 "DarkViolet"
953 "dark violet"
954 "DarkOrchid"
955 "dark orchid"
956 "MediumOrchid"
957 "medium orchid"
958 "orchid"
959 "plum"
960 "violet"
961 "magenta"
962 "VioletRed"
963 "violet red"
964 "MediumVioletRed"
965 "medium violet red"
966 "maroon"
967 "PaleVioletRed"
968 "pale violet red"
969 "LightPink"
970 "light pink"
971 "pink"
972 "DeepPink"
973 "deep pink"
974 "HotPink"
975 "hot pink"
976 "red"
977 "OrangeRed"
978 "orange red"
979 "tomato"
980 "LightCoral"
981 "light coral"
982 "coral"
983 "DarkOrange"
984 "dark orange"
985 "orange"
986 "LightSalmon"
987 "light salmon"
988 "salmon"
989 "DarkSalmon"
990 "dark salmon"
991 "brown"
992 "firebrick"
993 "chocolate"
994 "tan"
995 "SandyBrown"
996 "sandy brown"
997 "wheat"
998 "beige"
999 "burlywood"
1000 "peru"
1001 "sienna"
1002 "SaddleBrown"
1003 "saddle brown"
1004 "IndianRed"
1005 "indian red"
1006 "RosyBrown"
1007 "rosy brown"
1008 "DarkGoldenrod"
1009 "dark goldenrod"
1010 "goldenrod"
1011 "LightGoldenrod"
1012 "light goldenrod"
1013 "gold"
1014 "yellow"
1015 "LightYellow"
1016 "light yellow"
1017 "LightGoldenrodYellow"
1018 "light goldenrod yellow"
1019 "PaleGoldenrod"
1020 "pale goldenrod"
1021 "khaki"
1022 "DarkKhaki"
1023 "dark khaki"
1024 "OliveDrab"
1025 "olive drab"
1026 "ForestGreen"
1027 "forest green"
1028 "YellowGreen"
1029 "yellow green"
1030 "LimeGreen"
1031 "lime green"
1032 "GreenYellow"
1033 "green yellow"
1034 "MediumSpringGreen"
1035 "medium spring green"
1036 "chartreuse"
1037 "green"
1038 "LawnGreen"
1039 "lawn green"
1040 "SpringGreen"
1041 "spring green"
1042 "PaleGreen"
1043 "pale green"
1044 "LightSeaGreen"
1045 "light sea green"
1046 "MediumSeaGreen"
1047 "medium sea green"
1048 "SeaGreen"
1049 "sea green"
1050 "DarkSeaGreen"
1051 "dark sea green"
1052 "DarkOliveGreen"
1053 "dark olive green"
1054 "DarkGreen"
1055 "dark green"
1056 "aquamarine"
1057 "MediumAquamarine"
1058 "medium aquamarine"
1059 "CadetBlue"
1060 "cadet blue"
1061 "LightCyan"
1062 "light cyan"
1063 "cyan"
1064 "turquoise"
1065 "MediumTurquoise"
1066 "medium turquoise"
1067 "DarkTurquoise"
1068 "dark turquoise"
1069 "PaleTurquoise"
1070 "pale turquoise"
1071 "PowderBlue"
1072 "powder blue"
1073 "LightBlue"
1074 "light blue"
1075 "LightSteelBlue"
1076 "light steel blue"
1077 "SteelBlue"
1078 "steel blue"
1079 "LightSkyBlue"
1080 "light sky blue"
1081 "SkyBlue"
1082 "sky blue"
1083 "DeepSkyBlue"
1084 "deep sky blue"
1085 "DodgerBlue"
1086 "dodger blue"
1087 "blue"
1088 "RoyalBlue"
1089 "royal blue"
1090 "MediumBlue"
1091 "medium blue"
1092 "LightSlateBlue"
1093 "light slate blue"
1094 "MediumSlateBlue"
1095 "medium slate blue"
1096 "SlateBlue"
1097 "slate blue"
1098 "DarkSlateBlue"
1099 "dark slate blue"
1100 "CornflowerBlue"
1101 "cornflower blue"
1102 "NavyBlue"
1103 "navy blue"
1104 "navy"
1105 "MidnightBlue"
1106 "midnight blue"
1107 "LightGray"
1108 "light gray"
1109 "LightGrey"
1110 "light grey"
1111 "grey"
1112 "gray"
1113 "LightSlateGrey"
1114 "light slate grey"
1115 "LightSlateGray"
1116 "light slate gray"
1117 "SlateGrey"
1118 "slate grey"
1119 "SlateGray"
1120 "slate gray"
1121 "DimGrey"
1122 "dim grey"
1123 "DimGray"
1124 "dim gray"
1125 "DarkSlateGrey"
1126 "dark slate grey"
1127 "DarkSlateGray"
1128 "dark slate gray"
1129 "black"
1130 "white"
1131 "MistyRose"
1132 "misty rose"
1133 "LavenderBlush"
1134 "lavender blush"
1135 "lavender"
1136 "AliceBlue"
1137 "alice blue"
1138 "azure"
1139 "MintCream"
1140 "mint cream"
1141 "honeydew"
1142 "seashell"
1143 "LemonChiffon"
1144 "lemon chiffon"
1145 "ivory"
1146 "cornsilk"
1147 "moccasin"
1148 "NavajoWhite"
1149 "navajo white"
1150 "PeachPuff"
1151 "peach puff"
1152 "bisque"
1153 "BlanchedAlmond"
1154 "blanched almond"
1155 "PapayaWhip"
1156 "papaya whip"
1157 "AntiqueWhite"
1158 "antique white"
1159 "linen"
1160 "OldLace"
1161 "old lace"
1162 "FloralWhite"
1163 "floral white"
1164 "gainsboro"
1165 "WhiteSmoke"
1166 "white smoke"
1167 "GhostWhite"
1168 "ghost white"
1169 "snow")
1170 "The list of X colors from the `rgb.txt' file. 510 "The list of X colors from the `rgb.txt' file.
1171XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp") 511XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
1172 512