-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColors.cs
1614 lines (1613 loc) · 70.9 KB
/
Colors.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using Autodesk.Revit.DB;
namespace ricaun.Revit.DB.Shape
{
/// <summary>
/// Colors
/// </summary>
public sealed class Colors
{
#region Media Colors
/// <summary>
/// Represents the color with the hex value #F0F8FF.
/// </summary>
public static Color AliceBlue => new Color(240, 248, 255);
/// <summary>
/// Represents the color with the hex value #FAEBD7.
/// </summary>
public static Color AntiqueWhite => new Color(250, 235, 215);
/// <summary>
/// Represents the color with the hex value #00FFFF.
/// </summary>
public static Color Aqua => new Color(0, 255, 255);
/// <summary>
/// Represents the color with the hex value #7FFFD4.
/// </summary>
public static Color Aquamarine => new Color(127, 255, 212);
/// <summary>
/// Represents the color with the hex value #F0FFFF.
/// </summary>
public static Color Azure => new Color(240, 255, 255);
/// <summary>
/// Represents the color with the hex value #F5F5DC.
/// </summary>
public static Color Beige => new Color(245, 245, 220);
/// <summary>
/// Represents the color with the hex value #FFE4C4.
/// </summary>
public static Color Bisque => new Color(255, 228, 196);
/// <summary>
/// Represents the color with the hex value #000000.
/// </summary>
public static Color Black => new Color(0, 0, 0);
/// <summary>
/// Represents the color with the hex value #FFEBCD.
/// </summary>
public static Color BlanchedAlmond => new Color(255, 235, 205);
/// <summary>
/// Represents the color with the hex value #0000FF.
/// </summary>
public static Color Blue => new Color(0, 0, 255);
/// <summary>
/// Represents the color with the hex value #8A2BE2.
/// </summary>
public static Color BlueViolet => new Color(138, 43, 226);
/// <summary>
/// Represents the color with the hex value #A52A2A.
/// </summary>
public static Color Brown => new Color(165, 42, 42);
/// <summary>
/// Represents the color with the hex value #DEB887.
/// </summary>
public static Color BurlyWood => new Color(222, 184, 135);
/// <summary>
/// Represents the color with the hex value #5F9EA0.
/// </summary>
public static Color CadetBlue => new Color(95, 158, 160);
/// <summary>
/// Represents the color with the hex value #7FFF00.
/// </summary>
public static Color Chartreuse => new Color(127, 255, 0);
/// <summary>
/// Represents the color with the hex value #D2691E.
/// </summary>
public static Color Chocolate => new Color(210, 105, 30);
/// <summary>
/// Represents the color with the hex value #FF7F50.
/// </summary>
public static Color Coral => new Color(255, 127, 80);
/// <summary>
/// Represents the color with the hex value #6495ED.
/// </summary>
public static Color CornflowerBlue => new Color(100, 149, 237);
/// <summary>
/// Represents the color with the hex value #FFF8DC.
/// </summary>
public static Color Cornsilk => new Color(255, 248, 220);
/// <summary>
/// Represents the color with the hex value #DC143C.
/// </summary>
public static Color Crimson => new Color(220, 20, 60);
/// <summary>
/// Represents the color with the hex value #00FFFF.
/// </summary>
public static Color Cyan => new Color(0, 255, 255);
/// <summary>
/// Represents the color with the hex value #00008B.
/// </summary>
public static Color DarkBlue => new Color(0, 0, 139);
/// <summary>
/// Represents the color with the hex value #008B8B.
/// </summary>
public static Color DarkCyan => new Color(0, 139, 139);
/// <summary>
/// Represents the color with the hex value #B8860B.
/// </summary>
public static Color DarkGoldenrod => new Color(184, 134, 11);
/// <summary>
/// Represents the color with the hex value #A9A9A9.
/// </summary>
public static Color DarkGray => new Color(169, 169, 169);
/// <summary>
/// Represents the color with the hex value #006400.
/// </summary>
public static Color DarkGreen => new Color(0, 100, 0);
/// <summary>
/// Represents the color with the hex value #BDB76B.
/// </summary>
public static Color DarkKhaki => new Color(189, 183, 107);
/// <summary>
/// Represents the color with the hex value #8B008B.
/// </summary>
public static Color DarkMagenta => new Color(139, 0, 139);
/// <summary>
/// Represents the color with the hex value #556B2F.
/// </summary>
public static Color DarkOliveGreen => new Color(85, 107, 47);
/// <summary>
/// Represents the color with the hex value #FF8C00.
/// </summary>
public static Color DarkOrange => new Color(255, 140, 0);
/// <summary>
/// Represents the color with the hex value #9932CC.
/// </summary>
public static Color DarkOrchid => new Color(153, 50, 204);
/// <summary>
/// Represents the color with the hex value #8B0000.
/// </summary>
public static Color DarkRed => new Color(139, 0, 0);
/// <summary>
/// Represents the color with the hex value #E9967A.
/// </summary>
public static Color DarkSalmon => new Color(233, 150, 122);
/// <summary>
/// Represents the color with the hex value #8FBC8F.
/// </summary>
public static Color DarkSeaGreen => new Color(143, 188, 143);
/// <summary>
/// Represents the color with the hex value #483D8B.
/// </summary>
public static Color DarkSlateBlue => new Color(72, 61, 139);
/// <summary>
/// Represents the color with the hex value #2F4F4F.
/// </summary>
public static Color DarkSlateGray => new Color(47, 79, 79);
/// <summary>
/// Represents the color with the hex value #00CED1.
/// </summary>
public static Color DarkTurquoise => new Color(0, 206, 209);
/// <summary>
/// Represents the color with the hex value #9400D3.
/// </summary>
public static Color DarkViolet => new Color(148, 0, 211);
/// <summary>
/// Represents the color with the hex value #FF1493.
/// </summary>
public static Color DeepPink => new Color(255, 20, 147);
/// <summary>
/// Represents the color with the hex value #00BFFF.
/// </summary>
public static Color DeepSkyBlue => new Color(0, 191, 255);
/// <summary>
/// Represents the color with the hex value #696969.
/// </summary>
public static Color DimGray => new Color(105, 105, 105);
/// <summary>
/// Represents the color with the hex value #1E90FF.
/// </summary>
public static Color DodgerBlue => new Color(30, 144, 255);
/// <summary>
/// Represents the color with the hex value #B22222.
/// </summary>
public static Color Firebrick => new Color(178, 34, 34);
/// <summary>
/// Represents the color with the hex value #FFFAF0.
/// </summary>
public static Color FloralWhite => new Color(255, 250, 240);
/// <summary>
/// Represents the color with the hex value #228B22.
/// </summary>
public static Color ForestGreen => new Color(34, 139, 34);
/// <summary>
/// Represents the color with the hex value #FF00FF.
/// </summary>
public static Color Fuchsia => new Color(255, 0, 255);
/// <summary>
/// Represents the color with the hex value #DCDCDC.
/// </summary>
public static Color Gainsboro => new Color(220, 220, 220);
/// <summary>
/// Represents the color with the hex value #F8F8FF.
/// </summary>
public static Color GhostWhite => new Color(248, 248, 255);
/// <summary>
/// Represents the color with the hex value #FFD700.
/// </summary>
public static Color Gold => new Color(255, 215, 0);
/// <summary>
/// Represents the color with the hex value #DAA520.
/// </summary>
public static Color Goldenrod => new Color(218, 165, 32);
/// <summary>
/// Represents the color with the hex value #808080.
/// </summary>
public static Color Gray => new Color(128, 128, 128);
/// <summary>
/// Represents the color with the hex value #008000.
/// </summary>
public static Color Green => new Color(0, 128, 0);
/// <summary>
/// Represents the color with the hex value #ADFF2F.
/// </summary>
public static Color GreenYellow => new Color(173, 255, 47);
/// <summary>
/// Represents the color with the hex value #F0FFF0.
/// </summary>
public static Color Honeydew => new Color(240, 255, 240);
/// <summary>
/// Represents the color with the hex value #FF69B4.
/// </summary>
public static Color HotPink => new Color(255, 105, 180);
/// <summary>
/// Represents the color with the hex value #CD5C5C.
/// </summary>
public static Color IndianRed => new Color(205, 92, 92);
/// <summary>
/// Represents the color with the hex value #4B0082.
/// </summary>
public static Color Indigo => new Color(75, 0, 130);
/// <summary>
/// Represents the color with the hex value #FFFFF0.
/// </summary>
public static Color Ivory => new Color(255, 255, 240);
/// <summary>
/// Represents the color with the hex value #F0E68C.
/// </summary>
public static Color Khaki => new Color(240, 230, 140);
/// <summary>
/// Represents the color with the hex value #E6E6FA.
/// </summary>
public static Color Lavender => new Color(230, 230, 250);
/// <summary>
/// Represents the color with the hex value #FFF0F5.
/// </summary>
public static Color LavenderBlush => new Color(255, 240, 245);
/// <summary>
/// Represents the color with the hex value #7CFC00.
/// </summary>
public static Color LawnGreen => new Color(124, 252, 0);
/// <summary>
/// Represents the color with the hex value #FFFACD.
/// </summary>
public static Color LemonChiffon => new Color(255, 250, 205);
/// <summary>
/// Represents the color with the hex value #ADD8E6.
/// </summary>
public static Color LightBlue => new Color(173, 216, 230);
/// <summary>
/// Represents the color with the hex value #F08080.
/// </summary>
public static Color LightCoral => new Color(240, 128, 128);
/// <summary>
/// Represents the color with the hex value #E0FFFF.
/// </summary>
public static Color LightCyan => new Color(224, 255, 255);
/// <summary>
/// Represents the color with the hex value #FAFAD2.
/// </summary>
public static Color LightGoldenrodYellow => new Color(250, 250, 210);
/// <summary>
/// Represents the color with the hex value #D3D3D3.
/// </summary>
public static Color LightGray => new Color(211, 211, 211);
/// <summary>
/// Represents the color with the hex value #90EE90.
/// </summary>
public static Color LightGreen => new Color(144, 238, 144);
/// <summary>
/// Represents the color with the hex value #FFB6C1.
/// </summary>
public static Color LightPink => new Color(255, 182, 193);
/// <summary>
/// Represents the color with the hex value #FFA07A.
/// </summary>
public static Color LightSalmon => new Color(255, 160, 122);
/// <summary>
/// Represents the color with the hex value #20B2AA.
/// </summary>
public static Color LightSeaGreen => new Color(32, 178, 170);
/// <summary>
/// Represents the color with the hex value #87CEFA.
/// </summary>
public static Color LightSkyBlue => new Color(135, 206, 250);
/// <summary>
/// Represents the color with the hex value #778899.
/// </summary>
public static Color LightSlateGray => new Color(119, 136, 153);
/// <summary>
/// Represents the color with the hex value #B0C4DE.
/// </summary>
public static Color LightSteelBlue => new Color(176, 196, 222);
/// <summary>
/// Represents the color with the hex value #FFFFE0.
/// </summary>
public static Color LightYellow => new Color(255, 255, 224);
/// <summary>
/// Represents the color with the hex value #00FF00.
/// </summary>
public static Color Lime => new Color(0, 255, 0);
/// <summary>
/// Represents the color with the hex value #32CD32.
/// </summary>
public static Color LimeGreen => new Color(50, 205, 50);
/// <summary>
/// Represents the color with the hex value #FAF0E6.
/// </summary>
public static Color Linen => new Color(250, 240, 230);
/// <summary>
/// Represents the color with the hex value #FF00FF.
/// </summary>
public static Color Magenta => new Color(255, 0, 255);
/// <summary>
/// Represents the color with the hex value #800000.
/// </summary>
public static Color Maroon => new Color(128, 0, 0);
/// <summary>
/// Represents the color with the hex value #66CDAA.
/// </summary>
public static Color MediumAquamarine => new Color(102, 205, 170);
/// <summary>
/// Represents the color with the hex value #0000CD.
/// </summary>
public static Color MediumBlue => new Color(0, 0, 205);
/// <summary>
/// Represents the color with the hex value #BA55D3.
/// </summary>
public static Color MediumOrchid => new Color(186, 85, 211);
/// <summary>
/// Represents the color with the hex value #9370DB.
/// </summary>
public static Color MediumPurple => new Color(147, 112, 219);
/// <summary>
/// Represents the color with the hex value #3CB371.
/// </summary>
public static Color MediumSeaGreen => new Color(60, 179, 113);
/// <summary>
/// Represents the color with the hex value #7B68EE.
/// </summary>
public static Color MediumSlateBlue => new Color(123, 104, 238);
/// <summary>
/// Represents the color with the hex value #00FA9A.
/// </summary>
public static Color MediumSpringGreen => new Color(0, 250, 154);
/// <summary>
/// Represents the color with the hex value #48D1CC.
/// </summary>
public static Color MediumTurquoise => new Color(72, 209, 204);
/// <summary>
/// Represents the color with the hex value #C71585.
/// </summary>
public static Color MediumVioletRed => new Color(199, 21, 133);
/// <summary>
/// Represents the color with the hex value #191970.
/// </summary>
public static Color MidnightBlue => new Color(25, 25, 112);
/// <summary>
/// Represents the color with the hex value #F5FFFA.
/// </summary>
public static Color MintCream => new Color(245, 255, 250);
/// <summary>
/// Represents the color with the hex value #FFE4E1.
/// </summary>
public static Color MistyRose => new Color(255, 228, 225);
/// <summary>
/// Represents the color with the hex value #FFE4B5.
/// </summary>
public static Color Moccasin => new Color(255, 228, 181);
/// <summary>
/// Represents the color with the hex value #FFDEAD.
/// </summary>
public static Color NavajoWhite => new Color(255, 222, 173);
/// <summary>
/// Represents the color with the hex value #000080.
/// </summary>
public static Color Navy => new Color(0, 0, 128);
/// <summary>
/// Represents the color with the hex value #FDF5E6.
/// </summary>
public static Color OldLace => new Color(253, 245, 230);
/// <summary>
/// Represents the color with the hex value #808000.
/// </summary>
public static Color Olive => new Color(128, 128, 0);
/// <summary>
/// Represents the color with the hex value #6B8E23.
/// </summary>
public static Color OliveDrab => new Color(107, 142, 35);
/// <summary>
/// Represents the color with the hex value #FFA500.
/// </summary>
public static Color Orange => new Color(255, 165, 0);
/// <summary>
/// Represents the color with the hex value #FF4500.
/// </summary>
public static Color OrangeRed => new Color(255, 69, 0);
/// <summary>
/// Represents the color with the hex value #DA70D6.
/// </summary>
public static Color Orchid => new Color(218, 112, 214);
/// <summary>
/// Represents the color with the hex value #EEE8AA.
/// </summary>
public static Color PaleGoldenrod => new Color(238, 232, 170);
/// <summary>
/// Represents the color with the hex value #98FB98.
/// </summary>
public static Color PaleGreen => new Color(152, 251, 152);
/// <summary>
/// Represents the color with the hex value #AFEEEE.
/// </summary>
public static Color PaleTurquoise => new Color(175, 238, 238);
/// <summary>
/// Represents the color with the hex value #DB7093.
/// </summary>
public static Color PaleVioletRed => new Color(219, 112, 147);
/// <summary>
/// Represents the color with the hex value #FFEFD5.
/// </summary>
public static Color PapayaWhip => new Color(255, 239, 213);
/// <summary>
/// Represents the color with the hex value #FFDAB9.
/// </summary>
public static Color PeachPuff => new Color(255, 218, 185);
/// <summary>
/// Represents the color with the hex value #CD853F.
/// </summary>
public static Color Peru => new Color(205, 133, 63);
/// <summary>
/// Represents the color with the hex value #FFC0CB.
/// </summary>
public static Color Pink => new Color(255, 192, 203);
/// <summary>
/// Represents the color with the hex value #DDA0DD.
/// </summary>
public static Color Plum => new Color(221, 160, 221);
/// <summary>
/// Represents the color with the hex value #B0E0E6.
/// </summary>
public static Color PowderBlue => new Color(176, 224, 230);
/// <summary>
/// Represents the color with the hex value #800080.
/// </summary>
public static Color Purple => new Color(128, 0, 128);
/// <summary>
/// Represents the color with the hex value #FF0000.
/// </summary>
public static Color Red => new Color(255, 0, 0);
/// <summary>
/// Represents the color with the hex value #BC8F8F.
/// </summary>
public static Color RosyBrown => new Color(188, 143, 143);
/// <summary>
/// Represents the color with the hex value #4169E1.
/// </summary>
public static Color RoyalBlue => new Color(65, 105, 225);
/// <summary>
/// Represents the color with the hex value #8B4513.
/// </summary>
public static Color SaddleBrown => new Color(139, 69, 19);
/// <summary>
/// Represents the color with the hex value #FA8072.
/// </summary>
public static Color Salmon => new Color(250, 128, 114);
/// <summary>
/// Represents the color with the hex value #F4A460.
/// </summary>
public static Color SandyBrown => new Color(244, 164, 96);
/// <summary>
/// Represents the color with the hex value #2E8B57.
/// </summary>
public static Color SeaGreen => new Color(46, 139, 87);
/// <summary>
/// Represents the color with the hex value #FFF5EE.
/// </summary>
public static Color SeaShell => new Color(255, 245, 238);
/// <summary>
/// Represents the color with the hex value #A0522D.
/// </summary>
public static Color Sienna => new Color(160, 82, 45);
/// <summary>
/// Represents the color with the hex value #C0C0C0.
/// </summary>
public static Color Silver => new Color(192, 192, 192);
/// <summary>
/// Represents the color with the hex value #87CEEB.
/// </summary>
public static Color SkyBlue => new Color(135, 206, 235);
/// <summary>
/// Represents the color with the hex value #6A5ACD.
/// </summary>
public static Color SlateBlue => new Color(106, 90, 205);
/// <summary>
/// Represents the color with the hex value #708090.
/// </summary>
public static Color SlateGray => new Color(112, 128, 144);
/// <summary>
/// Represents the color with the hex value #FFFAFA.
/// </summary>
public static Color Snow => new Color(255, 250, 250);
/// <summary>
/// Represents the color with the hex value #00FF7F.
/// </summary>
public static Color SpringGreen => new Color(0, 255, 127);
/// <summary>
/// Represents the color with the hex value #4682B4.
/// </summary>
public static Color SteelBlue => new Color(70, 130, 180);
/// <summary>
/// Represents the color with the hex value #D2B48C.
/// </summary>
public static Color Tan => new Color(210, 180, 140);
/// <summary>
/// Represents the color with the hex value #008080.
/// </summary>
public static Color Teal => new Color(0, 128, 128);
/// <summary>
/// Represents the color with the hex value #D8BFD8.
/// </summary>
public static Color Thistle => new Color(216, 191, 216);
/// <summary>
/// Represents the color with the hex value #FF6347.
/// </summary>
public static Color Tomato => new Color(255, 99, 71);
/// <summary>
/// Represents the color with the hex value #40E0D0.
/// </summary>
public static Color Turquoise => new Color(64, 224, 208);
/// <summary>
/// Represents the color with the hex value #EE82EE.
/// </summary>
public static Color Violet => new Color(238, 130, 238);
/// <summary>
/// Represents the color with the hex value #F5DEB3.
/// </summary>
public static Color Wheat => new Color(245, 222, 179);
/// <summary>
/// Represents the color with the hex value #FFFFFF.
/// </summary>
public static Color White => new Color(255, 255, 255);
/// <summary>
/// Represents the color with the hex value #F5F5F5.
/// </summary>
public static Color WhiteSmoke => new Color(245, 245, 245);
/// <summary>
/// Represents the color with the hex value #FFFF00.
/// </summary>
public static Color Yellow => new Color(255, 255, 0);
/// <summary>
/// Represents the color with the hex value #9ACD32.
/// </summary>
public static Color YellowGreen => new Color(154, 205, 50);
#endregion
#region AutoCAD Colors
/// <summary>
/// Color Index
/// </summary>
public class Index
{
/// <summary>
/// Get Color by the <paramref name="index"/>
/// </summary>
/// <param name="index">0 to 255</param>
/// <returns></returns>
public static Color Get(byte index)
{
return typeof(Index).GetProperty("Color_" + index).GetValue(null) as Color;
}
/// <summary>
/// Represents the color black with the hex value #000000.
/// </summary>
public static Color Color_0 => new Color(0, 0, 0);
/// <summary>
/// Represents the color red with the hex value #FF0000.
/// </summary>
public static Color Color_1 => new Color(255, 0, 0);
/// <summary>
/// Represents the color yellow with the hex value #FFFF00.
/// </summary>
public static Color Color_2 => new Color(255, 255, 0);
/// <summary>
/// Represents the color lime with the hex value #00FF00.
/// </summary>
public static Color Color_3 => new Color(0, 255, 0);
/// <summary>
/// Represents the color cyan with the hex value #00FFFF.
/// </summary>
public static Color Color_4 => new Color(0, 255, 255);
/// <summary>
/// Represents the color blue with the hex value #0000FF.
/// </summary>
public static Color Color_5 => new Color(0, 0, 255);
/// <summary>
/// Represents the color magenta with the hex value #FF00FF.
/// </summary>
public static Color Color_6 => new Color(255, 0, 255);
/// <summary>
/// Represents the color white with the hex value #FFFFFF.
/// </summary>
public static Color Color_7 => new Color(255, 255, 255);
/// <summary>
/// Represents the color black gray with the hex value #414141.
/// </summary>
public static Color Color_8 => new Color(65, 65, 65);
/// <summary>
/// Represents the color gray with the hex value #808080.
/// </summary>
public static Color Color_9 => new Color(128, 128, 128);
/// <summary>
/// Represents the color with the hex value #FF0000.
/// </summary>
public static Color Color_10 => new Color(255, 0, 0);
/// <summary>
/// Represents the color with the hex value #FFAAAA.
/// </summary>
public static Color Color_11 => new Color(255, 170, 170);
/// <summary>
/// Represents the color with the hex value #BD0000.
/// </summary>
public static Color Color_12 => new Color(189, 0, 0);
/// <summary>
/// Represents the color with the hex value #BD7E7E.
/// </summary>
public static Color Color_13 => new Color(189, 126, 126);
/// <summary>
/// Represents the color with the hex value #810000.
/// </summary>
public static Color Color_14 => new Color(129, 0, 0);
/// <summary>
/// Represents the color with the hex value #815656.
/// </summary>
public static Color Color_15 => new Color(129, 86, 86);
/// <summary>
/// Represents the color with the hex value #680000.
/// </summary>
public static Color Color_16 => new Color(104, 0, 0);
/// <summary>
/// Represents the color with the hex value #684545.
/// </summary>
public static Color Color_17 => new Color(104, 69, 69);
/// <summary>
/// Represents the color with the hex value #4F0000.
/// </summary>
public static Color Color_18 => new Color(79, 0, 0);
/// <summary>
/// Represents the color with the hex value #4F3535.
/// </summary>
public static Color Color_19 => new Color(79, 53, 53);
/// <summary>
/// Represents the color with the hex value #FF3F00.
/// </summary>
public static Color Color_20 => new Color(255, 63, 0);
/// <summary>
/// Represents the color with the hex value #FFBFAA.
/// </summary>
public static Color Color_21 => new Color(255, 191, 170);
/// <summary>
/// Represents the color with the hex value #BD2E00.
/// </summary>
public static Color Color_22 => new Color(189, 46, 0);
/// <summary>
/// Represents the color with the hex value #BD8D7E.
/// </summary>
public static Color Color_23 => new Color(189, 141, 126);
/// <summary>
/// Represents the color with the hex value #811F00.
/// </summary>
public static Color Color_24 => new Color(129, 31, 0);
/// <summary>
/// Represents the color with the hex value #816056.
/// </summary>
public static Color Color_25 => new Color(129, 96, 86);
/// <summary>
/// Represents the color with the hex value #681900.
/// </summary>
public static Color Color_26 => new Color(104, 25, 0);
/// <summary>
/// Represents the color with the hex value #684E45.
/// </summary>
public static Color Color_27 => new Color(104, 78, 69);
/// <summary>
/// Represents the color with the hex value #4F1300.
/// </summary>
public static Color Color_28 => new Color(79, 19, 0);
/// <summary>
/// Represents the color with the hex value #4F3B35.
/// </summary>
public static Color Color_29 => new Color(79, 59, 53);
/// <summary>
/// Represents the color with the hex value #FF7F00.
/// </summary>
public static Color Color_30 => new Color(255, 127, 0);
/// <summary>
/// Represents the color with the hex value #FFD4AA.
/// </summary>
public static Color Color_31 => new Color(255, 212, 170);
/// <summary>
/// Represents the color with the hex value #BD5E00.
/// </summary>
public static Color Color_32 => new Color(189, 94, 0);
/// <summary>
/// Represents the color with the hex value #BD9D7E.
/// </summary>
public static Color Color_33 => new Color(189, 157, 126);
/// <summary>
/// Represents the color with the hex value #814000.
/// </summary>
public static Color Color_34 => new Color(129, 64, 0);
/// <summary>
/// Represents the color with the hex value #816B56.
/// </summary>
public static Color Color_35 => new Color(129, 107, 86);
/// <summary>
/// Represents the color with the hex value #683400.
/// </summary>
public static Color Color_36 => new Color(104, 52, 0);
/// <summary>
/// Represents the color with the hex value #685645.
/// </summary>
public static Color Color_37 => new Color(104, 86, 69);
/// <summary>
/// Represents the color with the hex value #4F2700.
/// </summary>
public static Color Color_38 => new Color(79, 39, 0);
/// <summary>
/// Represents the color with the hex value #4F4235.
/// </summary>
public static Color Color_39 => new Color(79, 66, 53);
/// <summary>
/// Represents the color with the hex value #FFBF00.
/// </summary>
public static Color Color_40 => new Color(255, 191, 0);
/// <summary>
/// Represents the color with the hex value #FFEAAA.
/// </summary>
public static Color Color_41 => new Color(255, 234, 170);
/// <summary>
/// Represents the color with the hex value #BD8D00.
/// </summary>
public static Color Color_42 => new Color(189, 141, 0);
/// <summary>
/// Represents the color with the hex value #BDAD7E.
/// </summary>
public static Color Color_43 => new Color(189, 173, 126);
/// <summary>
/// Represents the color with the hex value #816000.
/// </summary>
public static Color Color_44 => new Color(129, 96, 0);
/// <summary>
/// Represents the color with the hex value #817656.
/// </summary>
public static Color Color_45 => new Color(129, 118, 86);
/// <summary>
/// Represents the color with the hex value #684E00.
/// </summary>
public static Color Color_46 => new Color(104, 78, 0);
/// <summary>
/// Represents the color with the hex value #685F45.
/// </summary>
public static Color Color_47 => new Color(104, 95, 69);
/// <summary>
/// Represents the color with the hex value #4F3B00.
/// </summary>
public static Color Color_48 => new Color(79, 59, 0);
/// <summary>
/// Represents the color with the hex value #4F4935.
/// </summary>
public static Color Color_49 => new Color(79, 73, 53);
/// <summary>
/// Represents the color with the hex value #FFFF00.
/// </summary>
public static Color Color_50 => new Color(255, 255, 0);
/// <summary>
/// Represents the color with the hex value #FFFFAA.
/// </summary>
public static Color Color_51 => new Color(255, 255, 170);
/// <summary>
/// Represents the color with the hex value #BDBD00.
/// </summary>
public static Color Color_52 => new Color(189, 189, 0);
/// <summary>
/// Represents the color with the hex value #BDBD7E.
/// </summary>
public static Color Color_53 => new Color(189, 189, 126);
/// <summary>
/// Represents the color with the hex value #818100.
/// </summary>
public static Color Color_54 => new Color(129, 129, 0);
/// <summary>
/// Represents the color with the hex value #818156.
/// </summary>
public static Color Color_55 => new Color(129, 129, 86);
/// <summary>
/// Represents the color with the hex value #686800.
/// </summary>
public static Color Color_56 => new Color(104, 104, 0);
/// <summary>
/// Represents the color with the hex value #686845.
/// </summary>
public static Color Color_57 => new Color(104, 104, 69);
/// <summary>
/// Represents the color with the hex value #4F4F00.
/// </summary>
public static Color Color_58 => new Color(79, 79, 0);
/// <summary>
/// Represents the color with the hex value #4F4F35.
/// </summary>
public static Color Color_59 => new Color(79, 79, 53);
/// <summary>
/// Represents the color with the hex value #BFFF00.
/// </summary>
public static Color Color_60 => new Color(191, 255, 0);
/// <summary>
/// Represents the color with the hex value #EAFFAA.
/// </summary>
public static Color Color_61 => new Color(234, 255, 170);
/// <summary>
/// Represents the color with the hex value #8DBD00.
/// </summary>
public static Color Color_62 => new Color(141, 189, 0);
/// <summary>
/// Represents the color with the hex value #ADBD7E.
/// </summary>
public static Color Color_63 => new Color(173, 189, 126);
/// <summary>
/// Represents the color with the hex value #608100.
/// </summary>
public static Color Color_64 => new Color(96, 129, 0);
/// <summary>
/// Represents the color with the hex value #768156.
/// </summary>
public static Color Color_65 => new Color(118, 129, 86);
/// <summary>
/// Represents the color with the hex value #4E6800.
/// </summary>
public static Color Color_66 => new Color(78, 104, 0);
/// <summary>
/// Represents the color with the hex value #5F6845.
/// </summary>
public static Color Color_67 => new Color(95, 104, 69);
/// <summary>
/// Represents the color with the hex value #3B4F00.
/// </summary>
public static Color Color_68 => new Color(59, 79, 0);
/// <summary>
/// Represents the color with the hex value #494F35.
/// </summary>
public static Color Color_69 => new Color(73, 79, 53);
/// <summary>
/// Represents the color with the hex value #7FFF00.
/// </summary>
public static Color Color_70 => new Color(127, 255, 0);
/// <summary>
/// Represents the color with the hex value #D4FFAA.
/// </summary>
public static Color Color_71 => new Color(212, 255, 170);
/// <summary>
/// Represents the color with the hex value #5EBD00.
/// </summary>
public static Color Color_72 => new Color(94, 189, 0);
/// <summary>
/// Represents the color with the hex value #9DBD7E.
/// </summary>
public static Color Color_73 => new Color(157, 189, 126);
/// <summary>
/// Represents the color with the hex value #408100.
/// </summary>
public static Color Color_74 => new Color(64, 129, 0);
/// <summary>
/// Represents the color with the hex value #6B8156.
/// </summary>
public static Color Color_75 => new Color(107, 129, 86);
/// <summary>
/// Represents the color with the hex value #346800.
/// </summary>
public static Color Color_76 => new Color(52, 104, 0);
/// <summary>
/// Represents the color with the hex value #566845.
/// </summary>
public static Color Color_77 => new Color(86, 104, 69);
/// <summary>
/// Represents the color with the hex value #274F00.
/// </summary>
public static Color Color_78 => new Color(39, 79, 0);
/// <summary>
/// Represents the color with the hex value #424F35.
/// </summary>
public static Color Color_79 => new Color(66, 79, 53);
/// <summary>
/// Represents the color with the hex value #3FFF00.
/// </summary>
public static Color Color_80 => new Color(63, 255, 0);
/// <summary>
/// Represents the color with the hex value #BFFFAA.
/// </summary>
public static Color Color_81 => new Color(191, 255, 170);
/// <summary>
/// Represents the color with the hex value #2EBD00.
/// </summary>
public static Color Color_82 => new Color(46, 189, 0);
/// <summary>
/// Represents the color with the hex value #8DBD7E.
/// </summary>
public static Color Color_83 => new Color(141, 189, 126);
/// <summary>
/// Represents the color with the hex value #1F8100.
/// </summary>
public static Color Color_84 => new Color(31, 129, 0);
/// <summary>
/// Represents the color with the hex value #608156.
/// </summary>
public static Color Color_85 => new Color(96, 129, 86);
/// <summary>
/// Represents the color with the hex value #196800.
/// </summary>
public static Color Color_86 => new Color(25, 104, 0);
/// <summary>
/// Represents the color with the hex value #4E6845.
/// </summary>
public static Color Color_87 => new Color(78, 104, 69);
/// <summary>
/// Represents the color with the hex value #134F00.
/// </summary>
public static Color Color_88 => new Color(19, 79, 0);
/// <summary>
/// Represents the color with the hex value #3B4F35.
/// </summary>
public static Color Color_89 => new Color(59, 79, 53);
/// <summary>
/// Represents the color with the hex value #00FF00.
/// </summary>
public static Color Color_90 => new Color(0, 255, 0);
/// <summary>
/// Represents the color with the hex value #AAFFAA.
/// </summary>
public static Color Color_91 => new Color(170, 255, 170);
/// <summary>
/// Represents the color with the hex value #00BD00.
/// </summary>
public static Color Color_92 => new Color(0, 189, 0);
/// <summary>
/// Represents the color with the hex value #7EBD7E.
/// </summary>
public static Color Color_93 => new Color(126, 189, 126);
/// <summary>
/// Represents the color with the hex value #008100.
/// </summary>
public static Color Color_94 => new Color(0, 129, 0);
/// <summary>
/// Represents the color with the hex value #568156.
/// </summary>
public static Color Color_95 => new Color(86, 129, 86);
/// <summary>
/// Represents the color with the hex value #006800.
/// </summary>
public static Color Color_96 => new Color(0, 104, 0);
/// <summary>
/// Represents the color with the hex value #456845.
/// </summary>
public static Color Color_97 => new Color(69, 104, 69);
/// <summary>
/// Represents the color with the hex value #004F00.
/// </summary>
public static Color Color_98 => new Color(0, 79, 0);
/// <summary>
/// Represents the color with the hex value #354F35.
/// </summary>
public static Color Color_99 => new Color(53, 79, 53);
/// <summary>
/// Represents the color with the hex value #00FF3F.
/// </summary>
public static Color Color_100 => new Color(0, 255, 63);
/// <summary>
/// Represents the color with the hex value #AAFFBF.
/// </summary>
public static Color Color_101 => new Color(170, 255, 191);
/// <summary>
/// Represents the color with the hex value #00BD2E.
/// </summary>
public static Color Color_102 => new Color(0, 189, 46);
/// <summary>
/// Represents the color with the hex value #7EBD8D.