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
use Pixel;

pub const ALICE_BLUE: Pixel = Pixel {
    r: 240,
    g: 248,
    b: 255,
};
pub const ANTIQUE_WHITE: Pixel = Pixel {
    r: 250,
    g: 235,
    b: 215,
};
pub const AQUA: Pixel = Pixel {
    r: 0,
    g: 255,
    b: 255,
};
pub const AQUAMARINE: Pixel = Pixel {
    r: 127,
    g: 255,
    b: 212,
};
pub const AZURE: Pixel = Pixel {
    r: 240,
    g: 255,
    b: 255,
};
pub const BEIGE: Pixel = Pixel {
    r: 245,
    g: 245,
    b: 220,
};
pub const BISQUE: Pixel = Pixel {
    r: 255,
    g: 228,
    b: 196,
};
pub const BLACK: Pixel = Pixel { r: 0, g: 0, b: 0 };
pub const BLANCHED_ALMOND: Pixel = Pixel {
    r: 255,
    g: 235,
    b: 205,
};
pub const BLUE: Pixel = Pixel { r: 0, g: 0, b: 255 };
pub const BLUE_VIOLET: Pixel = Pixel {
    r: 138,
    g: 43,
    b: 226,
};
pub const BROWN: Pixel = Pixel {
    r: 165,
    g: 42,
    b: 42,
};
pub const BURLYWOOD: Pixel = Pixel {
    r: 222,
    g: 184,
    b: 135,
};
pub const CADET_BLUE: Pixel = Pixel {
    r: 95,
    g: 158,
    b: 160,
};
pub const CHARTREUSE: Pixel = Pixel {
    r: 127,
    g: 255,
    b: 0,
};
pub const CHOCOLATE: Pixel = Pixel {
    r: 210,
    g: 105,
    b: 30,
};
pub const CORAL: Pixel = Pixel {
    r: 255,
    g: 127,
    b: 80,
};
pub const CORNFLOWER_BLUE: Pixel = Pixel {
    r: 100,
    g: 149,
    b: 237,
};
pub const CORNSILK: Pixel = Pixel {
    r: 255,
    g: 248,
    b: 220,
};
pub const CRIMSON: Pixel = Pixel {
    r: 220,
    g: 20,
    b: 60,
};
pub const CYAN: Pixel = Pixel {
    r: 0,
    g: 255,
    b: 255,
};
pub const DARK_BLUE: Pixel = Pixel { r: 0, g: 0, b: 139 };
pub const DARK_CYAN: Pixel = Pixel {
    r: 0,
    g: 139,
    b: 139,
};
pub const DARK_GOLDENROD: Pixel = Pixel {
    r: 184,
    g: 134,
    b: 11,
};
pub const DARK_GRAY: Pixel = Pixel {
    r: 169,
    g: 169,
    b: 169,
};
pub const DARK_GREEN: Pixel = Pixel { r: 0, g: 100, b: 0 };
pub const DARK_GREY: Pixel = Pixel {
    r: 169,
    g: 169,
    b: 169,
};
pub const DARK_KHAKI: Pixel = Pixel {
    r: 189,
    g: 183,
    b: 107,
};
pub const DARK_MAGENTA: Pixel = Pixel {
    r: 139,
    g: 0,
    b: 139,
};
pub const DARK_OLIVE_GREEN: Pixel = Pixel {
    r: 85,
    g: 107,
    b: 47,
};
pub const DARK_ORANGE: Pixel = Pixel {
    r: 255,
    g: 140,
    b: 0,
};
pub const DARK_ORCHID: Pixel = Pixel {
    r: 153,
    g: 50,
    b: 204,
};
pub const DARK_RED: Pixel = Pixel { r: 139, g: 0, b: 0 };
pub const DARK_SALMON: Pixel = Pixel {
    r: 233,
    g: 150,
    b: 122,
};
pub const DARK_SEAGREEN: Pixel = Pixel {
    r: 143,
    g: 188,
    b: 143,
};
pub const DARK_SLATE_BLUE: Pixel = Pixel {
    r: 72,
    g: 61,
    b: 139,
};
pub const DARK_SLATE_GRAY: Pixel = Pixel {
    r: 47,
    g: 79,
    b: 79,
};
pub const DARK_SLATE_GREY: Pixel = Pixel {
    r: 47,
    g: 79,
    b: 79,
};
pub const DARK_TURQUOISE: Pixel = Pixel {
    r: 0,
    g: 206,
    b: 209,
};
pub const DARK_VIOLET: Pixel = Pixel {
    r: 148,
    g: 0,
    b: 211,
};
pub const DEEP_PINK: Pixel = Pixel {
    r: 255,
    g: 20,
    b: 147,
};
pub const DEEP_SKYBLUE: Pixel = Pixel {
    r: 0,
    g: 191,
    b: 255,
};
pub const DIM_GRAY: Pixel = Pixel {
    r: 105,
    g: 105,
    b: 105,
};
pub const DIM_GREY: Pixel = Pixel {
    r: 105,
    g: 105,
    b: 105,
};
pub const DODGER_BLUE: Pixel = Pixel {
    r: 30,
    g: 144,
    b: 255,
};
pub const FIREBRICK: Pixel = Pixel {
    r: 178,
    g: 34,
    b: 34,
};
pub const FLORAL_WHITE: Pixel = Pixel {
    r: 255,
    g: 250,
    b: 240,
};
pub const FOREST_GREEN: Pixel = Pixel {
    r: 34,
    g: 139,
    b: 34,
};
pub const FUCHSIA: Pixel = Pixel {
    r: 255,
    g: 0,
    b: 255,
};
pub const GAINSBORO: Pixel = Pixel {
    r: 220,
    g: 220,
    b: 220,
};
pub const GHOST_WHITE: Pixel = Pixel {
    r: 248,
    g: 248,
    b: 255,
};
pub const GOLD: Pixel = Pixel {
    r: 255,
    g: 215,
    b: 0,
};
pub const GOLDENROD: Pixel = Pixel {
    r: 218,
    g: 165,
    b: 32,
};
pub const GRAY: Pixel = Pixel {
    r: 128,
    g: 128,
    b: 128,
};
pub const GREY: Pixel = Pixel {
    r: 128,
    g: 128,
    b: 128,
};
pub const GREEN: Pixel = Pixel { r: 0, g: 128, b: 0 };
pub const GREEN_YELLOW: Pixel = Pixel {
    r: 173,
    g: 255,
    b: 47,
};
pub const HONEYDEW: Pixel = Pixel {
    r: 240,
    g: 255,
    b: 240,
};
pub const HOT_PINK: Pixel = Pixel {
    r: 255,
    g: 105,
    b: 180,
};
pub const INDIAN_RED: Pixel = Pixel {
    r: 205,
    g: 92,
    b: 92,
};
pub const INDIGO: Pixel = Pixel {
    r: 75,
    g: 0,
    b: 130,
};
pub const IVORY: Pixel = Pixel {
    r: 255,
    g: 255,
    b: 240,
};
pub const KHAKI: Pixel = Pixel {
    r: 240,
    g: 230,
    b: 140,
};
pub const LAVENDER: Pixel = Pixel {
    r: 230,
    g: 230,
    b: 250,
};
pub const LAVENDERBLUSH: Pixel = Pixel {
    r: 255,
    g: 240,
    b: 245,
};
pub const LAWN_GREEN: Pixel = Pixel {
    r: 124,
    g: 252,
    b: 0,
};
pub const LEMON_CHIFFON: Pixel = Pixel {
    r: 255,
    g: 250,
    b: 205,
};
pub const LIGHT_BLUE: Pixel = Pixel {
    r: 173,
    g: 216,
    b: 230,
};
pub const LIGHT_CORAL: Pixel = Pixel {
    r: 240,
    g: 128,
    b: 128,
};
pub const LIGHT_CYAN: Pixel = Pixel {
    r: 224,
    g: 255,
    b: 255,
};
pub const LIGHT_GOLDENROD_YELLOW: Pixel = Pixel {
    r: 250,
    g: 250,
    b: 210,
};
pub const LIGHT_GRAY: Pixel = Pixel {
    r: 211,
    g: 211,
    b: 211,
};
pub const LIGHT_GREEN: Pixel = Pixel {
    r: 144,
    g: 238,
    b: 144,
};
pub const LIGHT_GREY: Pixel = Pixel {
    r: 211,
    g: 211,
    b: 211,
};
pub const LIGHT_PINK: Pixel = Pixel {
    r: 255,
    g: 182,
    b: 193,
};
pub const LIGHT_SALMON: Pixel = Pixel {
    r: 255,
    g: 160,
    b: 122,
};
pub const LIGHT_SEAGREEN: Pixel = Pixel {
    r: 32,
    g: 178,
    b: 170,
};
pub const LIGHT_SKYBLUE: Pixel = Pixel {
    r: 135,
    g: 206,
    b: 250,
};
pub const LIGHT_SLATE_GRAY: Pixel = Pixel {
    r: 119,
    g: 136,
    b: 153,
};
pub const LIGHT_SLATE_GREY: Pixel = Pixel {
    r: 119,
    g: 136,
    b: 153,
};
pub const LIGHT_STEEL_BLUE: Pixel = Pixel {
    r: 176,
    g: 196,
    b: 222,
};
pub const LIGHT_YELLOW: Pixel = Pixel {
    r: 255,
    g: 255,
    b: 224,
};
pub const LIME: Pixel = Pixel { r: 0, g: 255, b: 0 };
pub const LIME_GREEN: Pixel = Pixel {
    r: 50,
    g: 205,
    b: 50,
};
pub const LINEN: Pixel = Pixel {
    r: 250,
    g: 240,
    b: 230,
};
pub const MAGENTA: Pixel = Pixel {
    r: 255,
    g: 0,
    b: 255,
};
pub const MAROON: Pixel = Pixel { r: 128, g: 0, b: 0 };
pub const MEDIUM_AQUAMARINE: Pixel = Pixel {
    r: 102,
    g: 205,
    b: 170,
};
pub const MEDIUM_BLUE: Pixel = Pixel { r: 0, g: 0, b: 205 };
pub const MEDIUM_ORCHID: Pixel = Pixel {
    r: 186,
    g: 85,
    b: 211,
};
pub const MEDIUM_PURPLE: Pixel = Pixel {
    r: 147,
    g: 112,
    b: 219,
};
pub const MEDIUM_SEAGREEN: Pixel = Pixel {
    r: 60,
    g: 179,
    b: 113,
};
pub const MEDIUM_SLATE_BLUE: Pixel = Pixel {
    r: 123,
    g: 104,
    b: 238,
};
pub const MEDIUM_SPRING_GREEN: Pixel = Pixel {
    r: 0,
    g: 250,
    b: 154,
};
pub const MEDIUM_TURQUOISE: Pixel = Pixel {
    r: 72,
    g: 209,
    b: 204,
};
pub const MEDIUM_VIOLETRED: Pixel = Pixel {
    r: 199,
    g: 21,
    b: 133,
};
pub const MIDNIGHT_BLUE: Pixel = Pixel {
    r: 25,
    g: 25,
    b: 112,
};
pub const MINT_CREAM: Pixel = Pixel {
    r: 245,
    g: 255,
    b: 250,
};
pub const MISTY_ROSE: Pixel = Pixel {
    r: 255,
    g: 228,
    b: 225,
};
pub const MOCCASIN: Pixel = Pixel {
    r: 255,
    g: 228,
    b: 181,
};
pub const NAVAJO_WHITE: Pixel = Pixel {
    r: 255,
    g: 222,
    b: 173,
};
pub const NAVY: Pixel = Pixel { r: 0, g: 0, b: 128 };
pub const OLD_LACE: Pixel = Pixel {
    r: 253,
    g: 245,
    b: 230,
};
pub const OLIVE: Pixel = Pixel {
    r: 128,
    g: 128,
    b: 0,
};
pub const OLIVE_DRAB: Pixel = Pixel {
    r: 107,
    g: 142,
    b: 35,
};
pub const ORANGE: Pixel = Pixel {
    r: 255,
    g: 165,
    b: 0,
};
pub const ORANGE_RED: Pixel = Pixel {
    r: 255,
    g: 69,
    b: 0,
};
pub const ORCHID: Pixel = Pixel {
    r: 218,
    g: 112,
    b: 214,
};
pub const PALE_GOLDENROD: Pixel = Pixel {
    r: 238,
    g: 232,
    b: 170,
};
pub const PALE_GREEN: Pixel = Pixel {
    r: 152,
    g: 251,
    b: 152,
};
pub const PALE_TURQUOISE: Pixel = Pixel {
    r: 175,
    g: 238,
    b: 238,
};
pub const PALE_VIOLETRED: Pixel = Pixel {
    r: 219,
    g: 112,
    b: 147,
};
pub const PAPAYAWHIP: Pixel = Pixel {
    r: 255,
    g: 239,
    b: 213,
};
pub const PEACHPUFF: Pixel = Pixel {
    r: 255,
    g: 218,
    b: 185,
};
pub const PERU: Pixel = Pixel {
    r: 205,
    g: 133,
    b: 63,
};
pub const PINK: Pixel = Pixel {
    r: 255,
    g: 192,
    b: 203,
};
pub const PLUM: Pixel = Pixel {
    r: 221,
    g: 160,
    b: 221,
};
pub const POWDER_BLUE: Pixel = Pixel {
    r: 176,
    g: 224,
    b: 230,
};
pub const PURPLE: Pixel = Pixel {
    r: 128,
    g: 0,
    b: 128,
};
pub const RED: Pixel = Pixel { r: 255, g: 0, b: 0 };
pub const ROSY_BROWN: Pixel = Pixel {
    r: 188,
    g: 143,
    b: 143,
};
pub const ROYAL_BLUE: Pixel = Pixel {
    r: 65,
    g: 105,
    b: 225,
};
pub const SADDLE_BROWN: Pixel = Pixel {
    r: 139,
    g: 69,
    b: 19,
};
pub const SALMON: Pixel = Pixel {
    r: 250,
    g: 128,
    b: 114,
};
pub const SANDY_BROWN: Pixel = Pixel {
    r: 244,
    g: 164,
    b: 96,
};
pub const SEAGREEN: Pixel = Pixel {
    r: 46,
    g: 139,
    b: 87,
};
pub const SEASHELL: Pixel = Pixel {
    r: 255,
    g: 245,
    b: 238,
};
pub const SIENNA: Pixel = Pixel {
    r: 160,
    g: 82,
    b: 45,
};
pub const SILVER: Pixel = Pixel {
    r: 192,
    g: 192,
    b: 192,
};
pub const SKYBLUE: Pixel = Pixel {
    r: 135,
    g: 206,
    b: 235,
};
pub const SLATE_BLUE: Pixel = Pixel {
    r: 106,
    g: 90,
    b: 205,
};
pub const SLATE_GRAY: Pixel = Pixel {
    r: 112,
    g: 128,
    b: 144,
};
pub const SLATE_GREY: Pixel = Pixel {
    r: 112,
    g: 128,
    b: 144,
};
pub const SNOW: Pixel = Pixel {
    r: 255,
    g: 250,
    b: 250,
};
pub const SPRING_GREEN: Pixel = Pixel {
    r: 0,
    g: 255,
    b: 127,
};
pub const STEEL_BLUE: Pixel = Pixel {
    r: 70,
    g: 130,
    b: 180,
};
pub const TAN: Pixel = Pixel {
    r: 210,
    g: 180,
    b: 140,
};
pub const TEAL: Pixel = Pixel {
    r: 0,
    g: 128,
    b: 128,
};
pub const THISTLE: Pixel = Pixel {
    r: 216,
    g: 191,
    b: 216,
};
pub const TOMATO: Pixel = Pixel {
    r: 255,
    g: 99,
    b: 71,
};
pub const TURQUOISE: Pixel = Pixel {
    r: 64,
    g: 224,
    b: 208,
};
pub const VIOLET: Pixel = Pixel {
    r: 238,
    g: 130,
    b: 238,
};
pub const WHEAT: Pixel = Pixel {
    r: 245,
    g: 222,
    b: 179,
};
pub const WHITE: Pixel = Pixel {
    r: 255,
    g: 255,
    b: 255,
};
pub const WHITE_SMOKE: Pixel = Pixel {
    r: 245,
    g: 245,
    b: 245,
};
pub const YELLOW: Pixel = Pixel {
    r: 255,
    g: 255,
    b: 0,
};
pub const YELLOW_GREEN: Pixel = Pixel {
    r: 154,
    g: 205,
    b: 50,
};