-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathx11-rgb-txt.h
767 lines (763 loc) · 46.5 KB
/
x11-rgb-txt.h
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
// x11-rgb-txt.h
#if !defined(X11_RGB_TXT_H)
#define X11_RGB_TXT_H 1
#if !defined(X11_RGB)
#define X11_RGB(R, G, B) { \
.red = R, \
.green = G, \
.blue = B, \
}
#endif
#define X11_RGB_snow X11_RGB(255, 250, 250)
#define X11_RGB_ghost_white X11_RGB(248, 248, 255)
#define X11_RGB_GhostWhite X11_RGB(248, 248, 255)
#define X11_RGB_white_smoke X11_RGB(245, 245, 245)
#define X11_RGB_WhiteSmoke X11_RGB(245, 245, 245)
#define X11_RGB_gainsboro X11_RGB(220, 220, 220)
#define X11_RGB_floral_white X11_RGB(255, 250, 240)
#define X11_RGB_FloralWhite X11_RGB(255, 250, 240)
#define X11_RGB_old_lace X11_RGB(253, 245, 230)
#define X11_RGB_OldLace X11_RGB(253, 245, 230)
#define X11_RGB_linen X11_RGB(250, 240, 230)
#define X11_RGB_antique_white X11_RGB(250, 235, 215)
#define X11_RGB_AntiqueWhite X11_RGB(250, 235, 215)
#define X11_RGB_papaya_whip X11_RGB(255, 239, 213)
#define X11_RGB_PapayaWhip X11_RGB(255, 239, 213)
#define X11_RGB_blanched_almond X11_RGB(255, 235, 205)
#define X11_RGB_BlanchedAlmond X11_RGB(255, 235, 205)
#define X11_RGB_bisque X11_RGB(255, 228, 196)
#define X11_RGB_peach_puff X11_RGB(255, 218, 185)
#define X11_RGB_PeachPuff X11_RGB(255, 218, 185)
#define X11_RGB_navajo_white X11_RGB(255, 222, 173)
#define X11_RGB_NavajoWhite X11_RGB(255, 222, 173)
#define X11_RGB_moccasin X11_RGB(255, 228, 181)
#define X11_RGB_cornsilk X11_RGB(255, 248, 220)
#define X11_RGB_ivory X11_RGB(255, 255, 240)
#define X11_RGB_lemon_chiffon X11_RGB(255, 250, 205)
#define X11_RGB_LemonChiffon X11_RGB(255, 250, 205)
#define X11_RGB_seashell X11_RGB(255, 245, 238)
#define X11_RGB_honeydew X11_RGB(240, 255, 240)
#define X11_RGB_mint_cream X11_RGB(245, 255, 250)
#define X11_RGB_MintCream X11_RGB(245, 255, 250)
#define X11_RGB_azure X11_RGB(240, 255, 255)
#define X11_RGB_alice_blue X11_RGB(240, 248, 255)
#define X11_RGB_AliceBlue X11_RGB(240, 248, 255)
#define X11_RGB_lavender X11_RGB(230, 230, 250)
#define X11_RGB_lavender_blush X11_RGB(255, 240, 245)
#define X11_RGB_LavenderBlush X11_RGB(255, 240, 245)
#define X11_RGB_misty_rose X11_RGB(255, 228, 225)
#define X11_RGB_MistyRose X11_RGB(255, 228, 225)
#define X11_RGB_white X11_RGB(255, 255, 255)
#define X11_RGB_black X11_RGB(0, 0, 0)
#define X11_RGB_dark_slate_gray X11_RGB(47, 79, 79)
#define X11_RGB_DarkSlateGray X11_RGB(47, 79, 79)
#define X11_RGB_dark_slate_grey X11_RGB(47, 79, 79)
#define X11_RGB_DarkSlateGrey X11_RGB(47, 79, 79)
#define X11_RGB_dim_gray X11_RGB(105, 105, 105)
#define X11_RGB_DimGray X11_RGB(105, 105, 105)
#define X11_RGB_dim_grey X11_RGB(105, 105, 105)
#define X11_RGB_DimGrey X11_RGB(105, 105, 105)
#define X11_RGB_slate_gray X11_RGB(112, 128, 144)
#define X11_RGB_SlateGray X11_RGB(112, 128, 144)
#define X11_RGB_slate_grey X11_RGB(112, 128, 144)
#define X11_RGB_SlateGrey X11_RGB(112, 128, 144)
#define X11_RGB_light_slate_gray X11_RGB(119, 136, 153)
#define X11_RGB_LightSlateGray X11_RGB(119, 136, 153)
#define X11_RGB_light_slate_grey X11_RGB(119, 136, 153)
#define X11_RGB_LightSlateGrey X11_RGB(119, 136, 153)
#define X11_RGB_gray X11_RGB(190, 190, 190)
#define X11_RGB_grey X11_RGB(190, 190, 190)
#define X11_RGB_light_grey X11_RGB(211, 211, 211)
#define X11_RGB_LightGrey X11_RGB(211, 211, 211)
#define X11_RGB_light_gray X11_RGB(211, 211, 211)
#define X11_RGB_LightGray X11_RGB(211, 211, 211)
#define X11_RGB_midnight_blue X11_RGB(25, 25, 112)
#define X11_RGB_MidnightBlue X11_RGB(25, 25, 112)
#define X11_RGB_navy X11_RGB(0, 0, 128)
#define X11_RGB_navy_blue X11_RGB(0, 0, 128)
#define X11_RGB_NavyBlue X11_RGB(0, 0, 128)
#define X11_RGB_cornflower_blue X11_RGB(100, 149, 237)
#define X11_RGB_CornflowerBlue X11_RGB(100, 149, 237)
#define X11_RGB_dark_slate_blue X11_RGB(72, 61, 139)
#define X11_RGB_DarkSlateBlue X11_RGB(72, 61, 139)
#define X11_RGB_slate_blue X11_RGB(106, 90, 205)
#define X11_RGB_SlateBlue X11_RGB(106, 90, 205)
#define X11_RGB_medium_slate_blue X11_RGB(123, 104, 238)
#define X11_RGB_MediumSlateBlue X11_RGB(123, 104, 238)
#define X11_RGB_light_slate_blue X11_RGB(132, 112, 255)
#define X11_RGB_LightSlateBlue X11_RGB(132, 112, 255)
#define X11_RGB_medium_blue X11_RGB(0, 0, 205)
#define X11_RGB_MediumBlue X11_RGB(0, 0, 205)
#define X11_RGB_royal_blue X11_RGB(65, 105, 225)
#define X11_RGB_RoyalBlue X11_RGB(65, 105, 225)
#define X11_RGB_blue X11_RGB(0, 0, 255)
#define X11_RGB_dodger_blue X11_RGB(30, 144, 255)
#define X11_RGB_DodgerBlue X11_RGB(30, 144, 255)
#define X11_RGB_deep_sky_blue X11_RGB(0, 191, 255)
#define X11_RGB_DeepSkyBlue X11_RGB(0, 191, 255)
#define X11_RGB_sky_blue X11_RGB(135, 206, 235)
#define X11_RGB_SkyBlue X11_RGB(135, 206, 235)
#define X11_RGB_light_sky_blue X11_RGB(135, 206, 250)
#define X11_RGB_LightSkyBlue X11_RGB(135, 206, 250)
#define X11_RGB_steel_blue X11_RGB(70, 130, 180)
#define X11_RGB_SteelBlue X11_RGB(70, 130, 180)
#define X11_RGB_light_steel_blue X11_RGB(176, 196, 222)
#define X11_RGB_LightSteelBlue X11_RGB(176, 196, 222)
#define X11_RGB_light_blue X11_RGB(173, 216, 230)
#define X11_RGB_LightBlue X11_RGB(173, 216, 230)
#define X11_RGB_powder_blue X11_RGB(176, 224, 230)
#define X11_RGB_PowderBlue X11_RGB(176, 224, 230)
#define X11_RGB_pale_turquoise X11_RGB(175, 238, 238)
#define X11_RGB_PaleTurquoise X11_RGB(175, 238, 238)
#define X11_RGB_dark_turquoise X11_RGB(0, 206, 209)
#define X11_RGB_DarkTurquoise X11_RGB(0, 206, 209)
#define X11_RGB_medium_turquoise X11_RGB(72, 209, 204)
#define X11_RGB_MediumTurquoise X11_RGB(72, 209, 204)
#define X11_RGB_turquoise X11_RGB(64, 224, 208)
#define X11_RGB_cyan X11_RGB(0, 255, 255)
#define X11_RGB_light_cyan X11_RGB(224, 255, 255)
#define X11_RGB_LightCyan X11_RGB(224, 255, 255)
#define X11_RGB_cadet_blue X11_RGB(95, 158, 160)
#define X11_RGB_CadetBlue X11_RGB(95, 158, 160)
#define X11_RGB_medium_aquamarine X11_RGB(102, 205, 170)
#define X11_RGB_MediumAquamarine X11_RGB(102, 205, 170)
#define X11_RGB_aquamarine X11_RGB(127, 255, 212)
#define X11_RGB_dark_green X11_RGB(0, 100, 0)
#define X11_RGB_DarkGreen X11_RGB(0, 100, 0)
#define X11_RGB_dark_olive_green X11_RGB(85, 107, 47)
#define X11_RGB_DarkOliveGreen X11_RGB(85, 107, 47)
#define X11_RGB_dark_sea_green X11_RGB(143, 188, 143)
#define X11_RGB_DarkSeaGreen X11_RGB(143, 188, 143)
#define X11_RGB_sea_green X11_RGB(46, 139, 87)
#define X11_RGB_SeaGreen X11_RGB(46, 139, 87)
#define X11_RGB_medium_sea_green X11_RGB(60, 179, 113)
#define X11_RGB_MediumSeaGreen X11_RGB(60, 179, 113)
#define X11_RGB_light_sea_green X11_RGB(32, 178, 170)
#define X11_RGB_LightSeaGreen X11_RGB(32, 178, 170)
#define X11_RGB_pale_green X11_RGB(152, 251, 152)
#define X11_RGB_PaleGreen X11_RGB(152, 251, 152)
#define X11_RGB_spring_green X11_RGB(0, 255, 127)
#define X11_RGB_SpringGreen X11_RGB(0, 255, 127)
#define X11_RGB_lawn_green X11_RGB(124, 252, 0)
#define X11_RGB_LawnGreen X11_RGB(124, 252, 0)
#define X11_RGB_green X11_RGB(0, 255, 0)
#define X11_RGB_chartreuse X11_RGB(127, 255, 0)
#define X11_RGB_medium_spring_green X11_RGB(0, 250, 154)
#define X11_RGB_MediumSpringGreen X11_RGB(0, 250, 154)
#define X11_RGB_green_yellow X11_RGB(173, 255, 47)
#define X11_RGB_GreenYellow X11_RGB(173, 255, 47)
#define X11_RGB_lime_green X11_RGB(50, 205, 50)
#define X11_RGB_LimeGreen X11_RGB(50, 205, 50)
#define X11_RGB_yellow_green X11_RGB(154, 205, 50)
#define X11_RGB_YellowGreen X11_RGB(154, 205, 50)
#define X11_RGB_forest_green X11_RGB(34, 139, 34)
#define X11_RGB_ForestGreen X11_RGB(34, 139, 34)
#define X11_RGB_olive_drab X11_RGB(107, 142, 35)
#define X11_RGB_OliveDrab X11_RGB(107, 142, 35)
#define X11_RGB_dark_khaki X11_RGB(189, 183, 107)
#define X11_RGB_DarkKhaki X11_RGB(189, 183, 107)
#define X11_RGB_khaki X11_RGB(240, 230, 140)
#define X11_RGB_pale_goldenrod X11_RGB(238, 232, 170)
#define X11_RGB_PaleGoldenrod X11_RGB(238, 232, 170)
#define X11_RGB_light_goldenrod_yellow X11_RGB(250, 250, 210)
#define X11_RGB_LightGoldenrodYellow X11_RGB(250, 250, 210)
#define X11_RGB_light_yellow X11_RGB(255, 255, 224)
#define X11_RGB_LightYellow X11_RGB(255, 255, 224)
#define X11_RGB_yellow X11_RGB(255, 255, 0)
#define X11_RGB_gold X11_RGB(255, 215, 0)
#define X11_RGB_light_goldenrod X11_RGB(238, 221, 130)
#define X11_RGB_LightGoldenrod X11_RGB(238, 221, 130)
#define X11_RGB_goldenrod X11_RGB(218, 165, 32)
#define X11_RGB_dark_goldenrod X11_RGB(184, 134, 11)
#define X11_RGB_DarkGoldenrod X11_RGB(184, 134, 11)
#define X11_RGB_rosy_brown X11_RGB(188, 143, 143)
#define X11_RGB_RosyBrown X11_RGB(188, 143, 143)
#define X11_RGB_indian_red X11_RGB(205, 92, 92)
#define X11_RGB_IndianRed X11_RGB(205, 92, 92)
#define X11_RGB_saddle_brown X11_RGB(139, 69, 19)
#define X11_RGB_SaddleBrown X11_RGB(139, 69, 19)
#define X11_RGB_sienna X11_RGB(160, 82, 45)
#define X11_RGB_peru X11_RGB(205, 133, 63)
#define X11_RGB_burlywood X11_RGB(222, 184, 135)
#define X11_RGB_beige X11_RGB(245, 245, 220)
#define X11_RGB_wheat X11_RGB(245, 222, 179)
#define X11_RGB_sandy_brown X11_RGB(244, 164, 96)
#define X11_RGB_SandyBrown X11_RGB(244, 164, 96)
#define X11_RGB_tan X11_RGB(210, 180, 140)
#define X11_RGB_chocolate X11_RGB(210, 105, 30)
#define X11_RGB_firebrick X11_RGB(178, 34, 34)
#define X11_RGB_brown X11_RGB(165, 42, 42)
#define X11_RGB_dark_salmon X11_RGB(233, 150, 122)
#define X11_RGB_DarkSalmon X11_RGB(233, 150, 122)
#define X11_RGB_salmon X11_RGB(250, 128, 114)
#define X11_RGB_light_salmon X11_RGB(255, 160, 122)
#define X11_RGB_LightSalmon X11_RGB(255, 160, 122)
#define X11_RGB_orange X11_RGB(255, 165, 0)
#define X11_RGB_dark_orange X11_RGB(255, 140, 0)
#define X11_RGB_DarkOrange X11_RGB(255, 140, 0)
#define X11_RGB_coral X11_RGB(255, 127, 80)
#define X11_RGB_light_coral X11_RGB(240, 128, 128)
#define X11_RGB_LightCoral X11_RGB(240, 128, 128)
#define X11_RGB_tomato X11_RGB(255, 99, 71)
#define X11_RGB_orange_red X11_RGB(255, 69, 0)
#define X11_RGB_OrangeRed X11_RGB(255, 69, 0)
#define X11_RGB_red X11_RGB(255, 0, 0)
#define X11_RGB_hot_pink X11_RGB(255, 105, 180)
#define X11_RGB_HotPink X11_RGB(255, 105, 180)
#define X11_RGB_deep_pink X11_RGB(255, 20, 147)
#define X11_RGB_DeepPink X11_RGB(255, 20, 147)
#define X11_RGB_pink X11_RGB(255, 192, 203)
#define X11_RGB_light_pink X11_RGB(255, 182, 193)
#define X11_RGB_LightPink X11_RGB(255, 182, 193)
#define X11_RGB_pale_violet_red X11_RGB(219, 112, 147)
#define X11_RGB_PaleVioletRed X11_RGB(219, 112, 147)
#define X11_RGB_maroon X11_RGB(176, 48, 96)
#define X11_RGB_medium_violet_red X11_RGB(199, 21, 133)
#define X11_RGB_MediumVioletRed X11_RGB(199, 21, 133)
#define X11_RGB_violet_red X11_RGB(208, 32, 144)
#define X11_RGB_VioletRed X11_RGB(208, 32, 144)
#define X11_RGB_magenta X11_RGB(255, 0, 255)
#define X11_RGB_violet X11_RGB(238, 130, 238)
#define X11_RGB_plum X11_RGB(221, 160, 221)
#define X11_RGB_orchid X11_RGB(218, 112, 214)
#define X11_RGB_medium_orchid X11_RGB(186, 85, 211)
#define X11_RGB_MediumOrchid X11_RGB(186, 85, 211)
#define X11_RGB_dark_orchid X11_RGB(153, 50, 204)
#define X11_RGB_DarkOrchid X11_RGB(153, 50, 204)
#define X11_RGB_dark_violet X11_RGB(148, 0, 211)
#define X11_RGB_DarkViolet X11_RGB(148, 0, 211)
#define X11_RGB_blue_violet X11_RGB(138, 43, 226)
#define X11_RGB_BlueViolet X11_RGB(138, 43, 226)
#define X11_RGB_purple X11_RGB(160, 32, 240)
#define X11_RGB_medium_purple X11_RGB(147, 112, 219)
#define X11_RGB_MediumPurple X11_RGB(147, 112, 219)
#define X11_RGB_thistle X11_RGB(216, 191, 216)
#define X11_RGB_snow1 X11_RGB(255, 250, 250)
#define X11_RGB_snow2 X11_RGB(238, 233, 233)
#define X11_RGB_snow3 X11_RGB(205, 201, 201)
#define X11_RGB_snow4 X11_RGB(139, 137, 137)
#define X11_RGB_seashell1 X11_RGB(255, 245, 238)
#define X11_RGB_seashell2 X11_RGB(238, 229, 222)
#define X11_RGB_seashell3 X11_RGB(205, 197, 191)
#define X11_RGB_seashell4 X11_RGB(139, 134, 130)
#define X11_RGB_AntiqueWhite1 X11_RGB(255, 239, 219)
#define X11_RGB_AntiqueWhite2 X11_RGB(238, 223, 204)
#define X11_RGB_AntiqueWhite3 X11_RGB(205, 192, 176)
#define X11_RGB_AntiqueWhite4 X11_RGB(139, 131, 120)
#define X11_RGB_bisque1 X11_RGB(255, 228, 196)
#define X11_RGB_bisque2 X11_RGB(238, 213, 183)
#define X11_RGB_bisque3 X11_RGB(205, 183, 158)
#define X11_RGB_bisque4 X11_RGB(139, 125, 107)
#define X11_RGB_PeachPuff1 X11_RGB(255, 218, 185)
#define X11_RGB_PeachPuff2 X11_RGB(238, 203, 173)
#define X11_RGB_PeachPuff3 X11_RGB(205, 175, 149)
#define X11_RGB_PeachPuff4 X11_RGB(139, 119, 101)
#define X11_RGB_NavajoWhite1 X11_RGB(255, 222, 173)
#define X11_RGB_NavajoWhite2 X11_RGB(238, 207, 161)
#define X11_RGB_NavajoWhite3 X11_RGB(205, 179, 139)
#define X11_RGB_NavajoWhite4 X11_RGB(139, 121, 94)
#define X11_RGB_LemonChiffon1 X11_RGB(255, 250, 205)
#define X11_RGB_LemonChiffon2 X11_RGB(238, 233, 191)
#define X11_RGB_LemonChiffon3 X11_RGB(205, 201, 165)
#define X11_RGB_LemonChiffon4 X11_RGB(139, 137, 112)
#define X11_RGB_cornsilk1 X11_RGB(255, 248, 220)
#define X11_RGB_cornsilk2 X11_RGB(238, 232, 205)
#define X11_RGB_cornsilk3 X11_RGB(205, 200, 177)
#define X11_RGB_cornsilk4 X11_RGB(139, 136, 120)
#define X11_RGB_ivory1 X11_RGB(255, 255, 240)
#define X11_RGB_ivory2 X11_RGB(238, 238, 224)
#define X11_RGB_ivory3 X11_RGB(205, 205, 193)
#define X11_RGB_ivory4 X11_RGB(139, 139, 131)
#define X11_RGB_honeydew1 X11_RGB(240, 255, 240)
#define X11_RGB_honeydew2 X11_RGB(224, 238, 224)
#define X11_RGB_honeydew3 X11_RGB(193, 205, 193)
#define X11_RGB_honeydew4 X11_RGB(131, 139, 131)
#define X11_RGB_LavenderBlush1 X11_RGB(255, 240, 245)
#define X11_RGB_LavenderBlush2 X11_RGB(238, 224, 229)
#define X11_RGB_LavenderBlush3 X11_RGB(205, 193, 197)
#define X11_RGB_LavenderBlush4 X11_RGB(139, 131, 134)
#define X11_RGB_MistyRose1 X11_RGB(255, 228, 225)
#define X11_RGB_MistyRose2 X11_RGB(238, 213, 210)
#define X11_RGB_MistyRose3 X11_RGB(205, 183, 181)
#define X11_RGB_MistyRose4 X11_RGB(139, 125, 123)
#define X11_RGB_azure1 X11_RGB(240, 255, 255)
#define X11_RGB_azure2 X11_RGB(224, 238, 238)
#define X11_RGB_azure3 X11_RGB(193, 205, 205)
#define X11_RGB_azure4 X11_RGB(131, 139, 139)
#define X11_RGB_SlateBlue1 X11_RGB(131, 111, 255)
#define X11_RGB_SlateBlue2 X11_RGB(122, 103, 238)
#define X11_RGB_SlateBlue3 X11_RGB(105, 89, 205)
#define X11_RGB_SlateBlue4 X11_RGB(71, 60, 139)
#define X11_RGB_RoyalBlue1 X11_RGB(72, 118, 255)
#define X11_RGB_RoyalBlue2 X11_RGB(67, 110, 238)
#define X11_RGB_RoyalBlue3 X11_RGB(58, 95, 205)
#define X11_RGB_RoyalBlue4 X11_RGB(39, 64, 139)
#define X11_RGB_blue1 X11_RGB(0, 0, 255)
#define X11_RGB_blue2 X11_RGB(0, 0, 238)
#define X11_RGB_blue3 X11_RGB(0, 0, 205)
#define X11_RGB_blue4 X11_RGB(0, 0, 139)
#define X11_RGB_DodgerBlue1 X11_RGB(30, 144, 255)
#define X11_RGB_DodgerBlue2 X11_RGB(28, 134, 238)
#define X11_RGB_DodgerBlue3 X11_RGB(24, 116, 205)
#define X11_RGB_DodgerBlue4 X11_RGB(16, 78, 139)
#define X11_RGB_SteelBlue1 X11_RGB(99, 184, 255)
#define X11_RGB_SteelBlue2 X11_RGB(92, 172, 238)
#define X11_RGB_SteelBlue3 X11_RGB(79, 148, 205)
#define X11_RGB_SteelBlue4 X11_RGB(54, 100, 139)
#define X11_RGB_DeepSkyBlue1 X11_RGB(0, 191, 255)
#define X11_RGB_DeepSkyBlue2 X11_RGB(0, 178, 238)
#define X11_RGB_DeepSkyBlue3 X11_RGB(0, 154, 205)
#define X11_RGB_DeepSkyBlue4 X11_RGB(0, 104, 139)
#define X11_RGB_SkyBlue1 X11_RGB(135, 206, 255)
#define X11_RGB_SkyBlue2 X11_RGB(126, 192, 238)
#define X11_RGB_SkyBlue3 X11_RGB(108, 166, 205)
#define X11_RGB_SkyBlue4 X11_RGB(74, 112, 139)
#define X11_RGB_LightSkyBlue1 X11_RGB(176, 226, 255)
#define X11_RGB_LightSkyBlue2 X11_RGB(164, 211, 238)
#define X11_RGB_LightSkyBlue3 X11_RGB(141, 182, 205)
#define X11_RGB_LightSkyBlue4 X11_RGB(96, 123, 139)
#define X11_RGB_SlateGray1 X11_RGB(198, 226, 255)
#define X11_RGB_SlateGray2 X11_RGB(185, 211, 238)
#define X11_RGB_SlateGray3 X11_RGB(159, 182, 205)
#define X11_RGB_SlateGray4 X11_RGB(108, 123, 139)
#define X11_RGB_LightSteelBlue1 X11_RGB(202, 225, 255)
#define X11_RGB_LightSteelBlue2 X11_RGB(188, 210, 238)
#define X11_RGB_LightSteelBlue3 X11_RGB(162, 181, 205)
#define X11_RGB_LightSteelBlue4 X11_RGB(110, 123, 139)
#define X11_RGB_LightBlue1 X11_RGB(191, 239, 255)
#define X11_RGB_LightBlue2 X11_RGB(178, 223, 238)
#define X11_RGB_LightBlue3 X11_RGB(154, 192, 205)
#define X11_RGB_LightBlue4 X11_RGB(104, 131, 139)
#define X11_RGB_LightCyan1 X11_RGB(224, 255, 255)
#define X11_RGB_LightCyan2 X11_RGB(209, 238, 238)
#define X11_RGB_LightCyan3 X11_RGB(180, 205, 205)
#define X11_RGB_LightCyan4 X11_RGB(122, 139, 139)
#define X11_RGB_PaleTurquoise1 X11_RGB(187, 255, 255)
#define X11_RGB_PaleTurquoise2 X11_RGB(174, 238, 238)
#define X11_RGB_PaleTurquoise3 X11_RGB(150, 205, 205)
#define X11_RGB_PaleTurquoise4 X11_RGB(102, 139, 139)
#define X11_RGB_CadetBlue1 X11_RGB(152, 245, 255)
#define X11_RGB_CadetBlue2 X11_RGB(142, 229, 238)
#define X11_RGB_CadetBlue3 X11_RGB(122, 197, 205)
#define X11_RGB_CadetBlue4 X11_RGB(83, 134, 139)
#define X11_RGB_turquoise1 X11_RGB(0, 245, 255)
#define X11_RGB_turquoise2 X11_RGB(0, 229, 238)
#define X11_RGB_turquoise3 X11_RGB(0, 197, 205)
#define X11_RGB_turquoise4 X11_RGB(0, 134, 139)
#define X11_RGB_cyan1 X11_RGB(0, 255, 255)
#define X11_RGB_cyan2 X11_RGB(0, 238, 238)
#define X11_RGB_cyan3 X11_RGB(0, 205, 205)
#define X11_RGB_cyan4 X11_RGB(0, 139, 139)
#define X11_RGB_DarkSlateGray1 X11_RGB(151, 255, 255)
#define X11_RGB_DarkSlateGray2 X11_RGB(141, 238, 238)
#define X11_RGB_DarkSlateGray3 X11_RGB(121, 205, 205)
#define X11_RGB_DarkSlateGray4 X11_RGB(82, 139, 139)
#define X11_RGB_aquamarine1 X11_RGB(127, 255, 212)
#define X11_RGB_aquamarine2 X11_RGB(118, 238, 198)
#define X11_RGB_aquamarine3 X11_RGB(102, 205, 170)
#define X11_RGB_aquamarine4 X11_RGB(69, 139, 116)
#define X11_RGB_DarkSeaGreen1 X11_RGB(193, 255, 193)
#define X11_RGB_DarkSeaGreen2 X11_RGB(180, 238, 180)
#define X11_RGB_DarkSeaGreen3 X11_RGB(155, 205, 155)
#define X11_RGB_DarkSeaGreen4 X11_RGB(105, 139, 105)
#define X11_RGB_SeaGreen1 X11_RGB(84, 255, 159)
#define X11_RGB_SeaGreen2 X11_RGB(78, 238, 148)
#define X11_RGB_SeaGreen3 X11_RGB(67, 205, 128)
#define X11_RGB_SeaGreen4 X11_RGB(46, 139, 87)
#define X11_RGB_PaleGreen1 X11_RGB(154, 255, 154)
#define X11_RGB_PaleGreen2 X11_RGB(144, 238, 144)
#define X11_RGB_PaleGreen3 X11_RGB(124, 205, 124)
#define X11_RGB_PaleGreen4 X11_RGB(84, 139, 84)
#define X11_RGB_SpringGreen1 X11_RGB(0, 255, 127)
#define X11_RGB_SpringGreen2 X11_RGB(0, 238, 118)
#define X11_RGB_SpringGreen3 X11_RGB(0, 205, 102)
#define X11_RGB_SpringGreen4 X11_RGB(0, 139, 69)
#define X11_RGB_green1 X11_RGB(0, 255, 0)
#define X11_RGB_green2 X11_RGB(0, 238, 0)
#define X11_RGB_green3 X11_RGB(0, 205, 0)
#define X11_RGB_green4 X11_RGB(0, 139, 0)
#define X11_RGB_chartreuse1 X11_RGB(127, 255, 0)
#define X11_RGB_chartreuse2 X11_RGB(118, 238, 0)
#define X11_RGB_chartreuse3 X11_RGB(102, 205, 0)
#define X11_RGB_chartreuse4 X11_RGB(69, 139, 0)
#define X11_RGB_OliveDrab1 X11_RGB(192, 255, 62)
#define X11_RGB_OliveDrab2 X11_RGB(179, 238, 58)
#define X11_RGB_OliveDrab3 X11_RGB(154, 205, 50)
#define X11_RGB_OliveDrab4 X11_RGB(105, 139, 34)
#define X11_RGB_DarkOliveGreen1 X11_RGB(202, 255, 112)
#define X11_RGB_DarkOliveGreen2 X11_RGB(188, 238, 104)
#define X11_RGB_DarkOliveGreen3 X11_RGB(162, 205, 90)
#define X11_RGB_DarkOliveGreen4 X11_RGB(110, 139, 61)
#define X11_RGB_khaki1 X11_RGB(255, 246, 143)
#define X11_RGB_khaki2 X11_RGB(238, 230, 133)
#define X11_RGB_khaki3 X11_RGB(205, 198, 115)
#define X11_RGB_khaki4 X11_RGB(139, 134, 78)
#define X11_RGB_LightGoldenrod1 X11_RGB(255, 236, 139)
#define X11_RGB_LightGoldenrod2 X11_RGB(238, 220, 130)
#define X11_RGB_LightGoldenrod3 X11_RGB(205, 190, 112)
#define X11_RGB_LightGoldenrod4 X11_RGB(139, 129, 76)
#define X11_RGB_LightYellow1 X11_RGB(255, 255, 224)
#define X11_RGB_LightYellow2 X11_RGB(238, 238, 209)
#define X11_RGB_LightYellow3 X11_RGB(205, 205, 180)
#define X11_RGB_LightYellow4 X11_RGB(139, 139, 122)
#define X11_RGB_yellow1 X11_RGB(255, 255, 0)
#define X11_RGB_yellow2 X11_RGB(238, 238, 0)
#define X11_RGB_yellow3 X11_RGB(205, 205, 0)
#define X11_RGB_yellow4 X11_RGB(139, 139, 0)
#define X11_RGB_gold1 X11_RGB(255, 215, 0)
#define X11_RGB_gold2 X11_RGB(238, 201, 0)
#define X11_RGB_gold3 X11_RGB(205, 173, 0)
#define X11_RGB_gold4 X11_RGB(139, 117, 0)
#define X11_RGB_goldenrod1 X11_RGB(255, 193, 37)
#define X11_RGB_goldenrod2 X11_RGB(238, 180, 34)
#define X11_RGB_goldenrod3 X11_RGB(205, 155, 29)
#define X11_RGB_goldenrod4 X11_RGB(139, 105, 20)
#define X11_RGB_DarkGoldenrod1 X11_RGB(255, 185, 15)
#define X11_RGB_DarkGoldenrod2 X11_RGB(238, 173, 14)
#define X11_RGB_DarkGoldenrod3 X11_RGB(205, 149, 12)
#define X11_RGB_DarkGoldenrod4 X11_RGB(139, 101, 8)
#define X11_RGB_RosyBrown1 X11_RGB(255, 193, 193)
#define X11_RGB_RosyBrown2 X11_RGB(238, 180, 180)
#define X11_RGB_RosyBrown3 X11_RGB(205, 155, 155)
#define X11_RGB_RosyBrown4 X11_RGB(139, 105, 105)
#define X11_RGB_IndianRed1 X11_RGB(255, 106, 106)
#define X11_RGB_IndianRed2 X11_RGB(238, 99, 99)
#define X11_RGB_IndianRed3 X11_RGB(205, 85, 85)
#define X11_RGB_IndianRed4 X11_RGB(139, 58, 58)
#define X11_RGB_sienna1 X11_RGB(255, 130, 71)
#define X11_RGB_sienna2 X11_RGB(238, 121, 66)
#define X11_RGB_sienna3 X11_RGB(205, 104, 57)
#define X11_RGB_sienna4 X11_RGB(139, 71, 38)
#define X11_RGB_burlywood1 X11_RGB(255, 211, 155)
#define X11_RGB_burlywood2 X11_RGB(238, 197, 145)
#define X11_RGB_burlywood3 X11_RGB(205, 170, 125)
#define X11_RGB_burlywood4 X11_RGB(139, 115, 85)
#define X11_RGB_wheat1 X11_RGB(255, 231, 186)
#define X11_RGB_wheat2 X11_RGB(238, 216, 174)
#define X11_RGB_wheat3 X11_RGB(205, 186, 150)
#define X11_RGB_wheat4 X11_RGB(139, 126, 102)
#define X11_RGB_tan1 X11_RGB(255, 165, 79)
#define X11_RGB_tan2 X11_RGB(238, 154, 73)
#define X11_RGB_tan3 X11_RGB(205, 133, 63)
#define X11_RGB_tan4 X11_RGB(139, 90, 43)
#define X11_RGB_chocolate1 X11_RGB(255, 127, 36)
#define X11_RGB_chocolate2 X11_RGB(238, 118, 33)
#define X11_RGB_chocolate3 X11_RGB(205, 102, 29)
#define X11_RGB_chocolate4 X11_RGB(139, 69, 19)
#define X11_RGB_firebrick1 X11_RGB(255, 48, 48)
#define X11_RGB_firebrick2 X11_RGB(238, 44, 44)
#define X11_RGB_firebrick3 X11_RGB(205, 38, 38)
#define X11_RGB_firebrick4 X11_RGB(139, 26, 26)
#define X11_RGB_brown1 X11_RGB(255, 64, 64)
#define X11_RGB_brown2 X11_RGB(238, 59, 59)
#define X11_RGB_brown3 X11_RGB(205, 51, 51)
#define X11_RGB_brown4 X11_RGB(139, 35, 35)
#define X11_RGB_salmon1 X11_RGB(255, 140, 105)
#define X11_RGB_salmon2 X11_RGB(238, 130, 98)
#define X11_RGB_salmon3 X11_RGB(205, 112, 84)
#define X11_RGB_salmon4 X11_RGB(139, 76, 57)
#define X11_RGB_LightSalmon1 X11_RGB(255, 160, 122)
#define X11_RGB_LightSalmon2 X11_RGB(238, 149, 114)
#define X11_RGB_LightSalmon3 X11_RGB(205, 129, 98)
#define X11_RGB_LightSalmon4 X11_RGB(139, 87, 66)
#define X11_RGB_orange1 X11_RGB(255, 165, 0)
#define X11_RGB_orange2 X11_RGB(238, 154, 0)
#define X11_RGB_orange3 X11_RGB(205, 133, 0)
#define X11_RGB_orange4 X11_RGB(139, 90, 0)
#define X11_RGB_DarkOrange1 X11_RGB(255, 127, 0)
#define X11_RGB_DarkOrange2 X11_RGB(238, 118, 0)
#define X11_RGB_DarkOrange3 X11_RGB(205, 102, 0)
#define X11_RGB_DarkOrange4 X11_RGB(139, 69, 0)
#define X11_RGB_coral1 X11_RGB(255, 114, 86)
#define X11_RGB_coral2 X11_RGB(238, 106, 80)
#define X11_RGB_coral3 X11_RGB(205, 91, 69)
#define X11_RGB_coral4 X11_RGB(139, 62, 47)
#define X11_RGB_tomato1 X11_RGB(255, 99, 71)
#define X11_RGB_tomato2 X11_RGB(238, 92, 66)
#define X11_RGB_tomato3 X11_RGB(205, 79, 57)
#define X11_RGB_tomato4 X11_RGB(139, 54, 38)
#define X11_RGB_OrangeRed1 X11_RGB(255, 69, 0)
#define X11_RGB_OrangeRed2 X11_RGB(238, 64, 0)
#define X11_RGB_OrangeRed3 X11_RGB(205, 55, 0)
#define X11_RGB_OrangeRed4 X11_RGB(139, 37, 0)
#define X11_RGB_red1 X11_RGB(255, 0, 0)
#define X11_RGB_red2 X11_RGB(238, 0, 0)
#define X11_RGB_red3 X11_RGB(205, 0, 0)
#define X11_RGB_red4 X11_RGB(139, 0, 0)
#define X11_RGB_DeepPink1 X11_RGB(255, 20, 147)
#define X11_RGB_DeepPink2 X11_RGB(238, 18, 137)
#define X11_RGB_DeepPink3 X11_RGB(205, 16, 118)
#define X11_RGB_DeepPink4 X11_RGB(139, 10, 80)
#define X11_RGB_HotPink1 X11_RGB(255, 110, 180)
#define X11_RGB_HotPink2 X11_RGB(238, 106, 167)
#define X11_RGB_HotPink3 X11_RGB(205, 96, 144)
#define X11_RGB_HotPink4 X11_RGB(139, 58, 98)
#define X11_RGB_pink1 X11_RGB(255, 181, 197)
#define X11_RGB_pink2 X11_RGB(238, 169, 184)
#define X11_RGB_pink3 X11_RGB(205, 145, 158)
#define X11_RGB_pink4 X11_RGB(139, 99, 108)
#define X11_RGB_LightPink1 X11_RGB(255, 174, 185)
#define X11_RGB_LightPink2 X11_RGB(238, 162, 173)
#define X11_RGB_LightPink3 X11_RGB(205, 140, 149)
#define X11_RGB_LightPink4 X11_RGB(139, 95, 101)
#define X11_RGB_PaleVioletRed1 X11_RGB(255, 130, 171)
#define X11_RGB_PaleVioletRed2 X11_RGB(238, 121, 159)
#define X11_RGB_PaleVioletRed3 X11_RGB(205, 104, 137)
#define X11_RGB_PaleVioletRed4 X11_RGB(139, 71, 93)
#define X11_RGB_maroon1 X11_RGB(255, 52, 179)
#define X11_RGB_maroon2 X11_RGB(238, 48, 167)
#define X11_RGB_maroon3 X11_RGB(205, 41, 144)
#define X11_RGB_maroon4 X11_RGB(139, 28, 98)
#define X11_RGB_VioletRed1 X11_RGB(255, 62, 150)
#define X11_RGB_VioletRed2 X11_RGB(238, 58, 140)
#define X11_RGB_VioletRed3 X11_RGB(205, 50, 120)
#define X11_RGB_VioletRed4 X11_RGB(139, 34, 82)
#define X11_RGB_magenta1 X11_RGB(255, 0, 255)
#define X11_RGB_magenta2 X11_RGB(238, 0, 238)
#define X11_RGB_magenta3 X11_RGB(205, 0, 205)
#define X11_RGB_magenta4 X11_RGB(139, 0, 139)
#define X11_RGB_orchid1 X11_RGB(255, 131, 250)
#define X11_RGB_orchid2 X11_RGB(238, 122, 233)
#define X11_RGB_orchid3 X11_RGB(205, 105, 201)
#define X11_RGB_orchid4 X11_RGB(139, 71, 137)
#define X11_RGB_plum1 X11_RGB(255, 187, 255)
#define X11_RGB_plum2 X11_RGB(238, 174, 238)
#define X11_RGB_plum3 X11_RGB(205, 150, 205)
#define X11_RGB_plum4 X11_RGB(139, 102, 139)
#define X11_RGB_MediumOrchid1 X11_RGB(224, 102, 255)
#define X11_RGB_MediumOrchid2 X11_RGB(209, 95, 238)
#define X11_RGB_MediumOrchid3 X11_RGB(180, 82, 205)
#define X11_RGB_MediumOrchid4 X11_RGB(122, 55, 139)
#define X11_RGB_DarkOrchid1 X11_RGB(191, 62, 255)
#define X11_RGB_DarkOrchid2 X11_RGB(178, 58, 238)
#define X11_RGB_DarkOrchid3 X11_RGB(154, 50, 205)
#define X11_RGB_DarkOrchid4 X11_RGB(104, 34, 139)
#define X11_RGB_purple1 X11_RGB(155, 48, 255)
#define X11_RGB_purple2 X11_RGB(145, 44, 238)
#define X11_RGB_purple3 X11_RGB(125, 38, 205)
#define X11_RGB_purple4 X11_RGB(85, 26, 139)
#define X11_RGB_MediumPurple1 X11_RGB(171, 130, 255)
#define X11_RGB_MediumPurple2 X11_RGB(159, 121, 238)
#define X11_RGB_MediumPurple3 X11_RGB(137, 104, 205)
#define X11_RGB_MediumPurple4 X11_RGB(93, 71, 139)
#define X11_RGB_thistle1 X11_RGB(255, 225, 255)
#define X11_RGB_thistle2 X11_RGB(238, 210, 238)
#define X11_RGB_thistle3 X11_RGB(205, 181, 205)
#define X11_RGB_thistle4 X11_RGB(139, 123, 139)
#define X11_RGB_gray0 X11_RGB(0, 0, 0)
#define X11_RGB_grey0 X11_RGB(0, 0, 0)
#define X11_RGB_gray1 X11_RGB(3, 3, 3)
#define X11_RGB_grey1 X11_RGB(3, 3, 3)
#define X11_RGB_gray2 X11_RGB(5, 5, 5)
#define X11_RGB_grey2 X11_RGB(5, 5, 5)
#define X11_RGB_gray3 X11_RGB(8, 8, 8)
#define X11_RGB_grey3 X11_RGB(8, 8, 8)
#define X11_RGB_gray4 X11_RGB(10, 10, 10)
#define X11_RGB_grey4 X11_RGB(10, 10, 10)
#define X11_RGB_gray5 X11_RGB(13, 13, 13)
#define X11_RGB_grey5 X11_RGB(13, 13, 13)
#define X11_RGB_gray6 X11_RGB(15, 15, 15)
#define X11_RGB_grey6 X11_RGB(15, 15, 15)
#define X11_RGB_gray7 X11_RGB(18, 18, 18)
#define X11_RGB_grey7 X11_RGB(18, 18, 18)
#define X11_RGB_gray8 X11_RGB(20, 20, 20)
#define X11_RGB_grey8 X11_RGB(20, 20, 20)
#define X11_RGB_gray9 X11_RGB(23, 23, 23)
#define X11_RGB_grey9 X11_RGB(23, 23, 23)
#define X11_RGB_gray10 X11_RGB(26, 26, 26)
#define X11_RGB_grey10 X11_RGB(26, 26, 26)
#define X11_RGB_gray11 X11_RGB(28, 28, 28)
#define X11_RGB_grey11 X11_RGB(28, 28, 28)
#define X11_RGB_gray12 X11_RGB(31, 31, 31)
#define X11_RGB_grey12 X11_RGB(31, 31, 31)
#define X11_RGB_gray13 X11_RGB(33, 33, 33)
#define X11_RGB_grey13 X11_RGB(33, 33, 33)
#define X11_RGB_gray14 X11_RGB(36, 36, 36)
#define X11_RGB_grey14 X11_RGB(36, 36, 36)
#define X11_RGB_gray15 X11_RGB(38, 38, 38)
#define X11_RGB_grey15 X11_RGB(38, 38, 38)
#define X11_RGB_gray16 X11_RGB(41, 41, 41)
#define X11_RGB_grey16 X11_RGB(41, 41, 41)
#define X11_RGB_gray17 X11_RGB(43, 43, 43)
#define X11_RGB_grey17 X11_RGB(43, 43, 43)
#define X11_RGB_gray18 X11_RGB(46, 46, 46)
#define X11_RGB_grey18 X11_RGB(46, 46, 46)
#define X11_RGB_gray19 X11_RGB(48, 48, 48)
#define X11_RGB_grey19 X11_RGB(48, 48, 48)
#define X11_RGB_gray20 X11_RGB(51, 51, 51)
#define X11_RGB_grey20 X11_RGB(51, 51, 51)
#define X11_RGB_gray21 X11_RGB(54, 54, 54)
#define X11_RGB_grey21 X11_RGB(54, 54, 54)
#define X11_RGB_gray22 X11_RGB(56, 56, 56)
#define X11_RGB_grey22 X11_RGB(56, 56, 56)
#define X11_RGB_gray23 X11_RGB(59, 59, 59)
#define X11_RGB_grey23 X11_RGB(59, 59, 59)
#define X11_RGB_gray24 X11_RGB(61, 61, 61)
#define X11_RGB_grey24 X11_RGB(61, 61, 61)
#define X11_RGB_gray25 X11_RGB(64, 64, 64)
#define X11_RGB_grey25 X11_RGB(64, 64, 64)
#define X11_RGB_gray26 X11_RGB(66, 66, 66)
#define X11_RGB_grey26 X11_RGB(66, 66, 66)
#define X11_RGB_gray27 X11_RGB(69, 69, 69)
#define X11_RGB_grey27 X11_RGB(69, 69, 69)
#define X11_RGB_gray28 X11_RGB(71, 71, 71)
#define X11_RGB_grey28 X11_RGB(71, 71, 71)
#define X11_RGB_gray29 X11_RGB(74, 74, 74)
#define X11_RGB_grey29 X11_RGB(74, 74, 74)
#define X11_RGB_gray30 X11_RGB(77, 77, 77)
#define X11_RGB_grey30 X11_RGB(77, 77, 77)
#define X11_RGB_gray31 X11_RGB(79, 79, 79)
#define X11_RGB_grey31 X11_RGB(79, 79, 79)
#define X11_RGB_gray32 X11_RGB(82, 82, 82)
#define X11_RGB_grey32 X11_RGB(82, 82, 82)
#define X11_RGB_gray33 X11_RGB(84, 84, 84)
#define X11_RGB_grey33 X11_RGB(84, 84, 84)
#define X11_RGB_gray34 X11_RGB(87, 87, 87)
#define X11_RGB_grey34 X11_RGB(87, 87, 87)
#define X11_RGB_gray35 X11_RGB(89, 89, 89)
#define X11_RGB_grey35 X11_RGB(89, 89, 89)
#define X11_RGB_gray36 X11_RGB(92, 92, 92)
#define X11_RGB_grey36 X11_RGB(92, 92, 92)
#define X11_RGB_gray37 X11_RGB(94, 94, 94)
#define X11_RGB_grey37 X11_RGB(94, 94, 94)
#define X11_RGB_gray38 X11_RGB(97, 97, 97)
#define X11_RGB_grey38 X11_RGB(97, 97, 97)
#define X11_RGB_gray39 X11_RGB(99, 99, 99)
#define X11_RGB_grey39 X11_RGB(99, 99, 99)
#define X11_RGB_gray40 X11_RGB(102, 102, 102)
#define X11_RGB_grey40 X11_RGB(102, 102, 102)
#define X11_RGB_gray41 X11_RGB(105, 105, 105)
#define X11_RGB_grey41 X11_RGB(105, 105, 105)
#define X11_RGB_gray42 X11_RGB(107, 107, 107)
#define X11_RGB_grey42 X11_RGB(107, 107, 107)
#define X11_RGB_gray43 X11_RGB(110, 110, 110)
#define X11_RGB_grey43 X11_RGB(110, 110, 110)
#define X11_RGB_gray44 X11_RGB(112, 112, 112)
#define X11_RGB_grey44 X11_RGB(112, 112, 112)
#define X11_RGB_gray45 X11_RGB(115, 115, 115)
#define X11_RGB_grey45 X11_RGB(115, 115, 115)
#define X11_RGB_gray46 X11_RGB(117, 117, 117)
#define X11_RGB_grey46 X11_RGB(117, 117, 117)
#define X11_RGB_gray47 X11_RGB(120, 120, 120)
#define X11_RGB_grey47 X11_RGB(120, 120, 120)
#define X11_RGB_gray48 X11_RGB(122, 122, 122)
#define X11_RGB_grey48 X11_RGB(122, 122, 122)
#define X11_RGB_gray49 X11_RGB(125, 125, 125)
#define X11_RGB_grey49 X11_RGB(125, 125, 125)
#define X11_RGB_gray50 X11_RGB(127, 127, 127)
#define X11_RGB_grey50 X11_RGB(127, 127, 127)
#define X11_RGB_gray51 X11_RGB(130, 130, 130)
#define X11_RGB_grey51 X11_RGB(130, 130, 130)
#define X11_RGB_gray52 X11_RGB(133, 133, 133)
#define X11_RGB_grey52 X11_RGB(133, 133, 133)
#define X11_RGB_gray53 X11_RGB(135, 135, 135)
#define X11_RGB_grey53 X11_RGB(135, 135, 135)
#define X11_RGB_gray54 X11_RGB(138, 138, 138)
#define X11_RGB_grey54 X11_RGB(138, 138, 138)
#define X11_RGB_gray55 X11_RGB(140, 140, 140)
#define X11_RGB_grey55 X11_RGB(140, 140, 140)
#define X11_RGB_gray56 X11_RGB(143, 143, 143)
#define X11_RGB_grey56 X11_RGB(143, 143, 143)
#define X11_RGB_gray57 X11_RGB(145, 145, 145)
#define X11_RGB_grey57 X11_RGB(145, 145, 145)
#define X11_RGB_gray58 X11_RGB(148, 148, 148)
#define X11_RGB_grey58 X11_RGB(148, 148, 148)
#define X11_RGB_gray59 X11_RGB(150, 150, 150)
#define X11_RGB_grey59 X11_RGB(150, 150, 150)
#define X11_RGB_gray60 X11_RGB(153, 153, 153)
#define X11_RGB_grey60 X11_RGB(153, 153, 153)
#define X11_RGB_gray61 X11_RGB(156, 156, 156)
#define X11_RGB_grey61 X11_RGB(156, 156, 156)
#define X11_RGB_gray62 X11_RGB(158, 158, 158)
#define X11_RGB_grey62 X11_RGB(158, 158, 158)
#define X11_RGB_gray63 X11_RGB(161, 161, 161)
#define X11_RGB_grey63 X11_RGB(161, 161, 161)
#define X11_RGB_gray64 X11_RGB(163, 163, 163)
#define X11_RGB_grey64 X11_RGB(163, 163, 163)
#define X11_RGB_gray65 X11_RGB(166, 166, 166)
#define X11_RGB_grey65 X11_RGB(166, 166, 166)
#define X11_RGB_gray66 X11_RGB(168, 168, 168)
#define X11_RGB_grey66 X11_RGB(168, 168, 168)
#define X11_RGB_gray67 X11_RGB(171, 171, 171)
#define X11_RGB_grey67 X11_RGB(171, 171, 171)
#define X11_RGB_gray68 X11_RGB(173, 173, 173)
#define X11_RGB_grey68 X11_RGB(173, 173, 173)
#define X11_RGB_gray69 X11_RGB(176, 176, 176)
#define X11_RGB_grey69 X11_RGB(176, 176, 176)
#define X11_RGB_gray70 X11_RGB(179, 179, 179)
#define X11_RGB_grey70 X11_RGB(179, 179, 179)
#define X11_RGB_gray71 X11_RGB(181, 181, 181)
#define X11_RGB_grey71 X11_RGB(181, 181, 181)
#define X11_RGB_gray72 X11_RGB(184, 184, 184)
#define X11_RGB_grey72 X11_RGB(184, 184, 184)
#define X11_RGB_gray73 X11_RGB(186, 186, 186)
#define X11_RGB_grey73 X11_RGB(186, 186, 186)
#define X11_RGB_gray74 X11_RGB(189, 189, 189)
#define X11_RGB_grey74 X11_RGB(189, 189, 189)
#define X11_RGB_gray75 X11_RGB(191, 191, 191)
#define X11_RGB_grey75 X11_RGB(191, 191, 191)
#define X11_RGB_gray76 X11_RGB(194, 194, 194)
#define X11_RGB_grey76 X11_RGB(194, 194, 194)
#define X11_RGB_gray77 X11_RGB(196, 196, 196)
#define X11_RGB_grey77 X11_RGB(196, 196, 196)
#define X11_RGB_gray78 X11_RGB(199, 199, 199)
#define X11_RGB_grey78 X11_RGB(199, 199, 199)
#define X11_RGB_gray79 X11_RGB(201, 201, 201)
#define X11_RGB_grey79 X11_RGB(201, 201, 201)
#define X11_RGB_gray80 X11_RGB(204, 204, 204)
#define X11_RGB_grey80 X11_RGB(204, 204, 204)
#define X11_RGB_gray81 X11_RGB(207, 207, 207)
#define X11_RGB_grey81 X11_RGB(207, 207, 207)
#define X11_RGB_gray82 X11_RGB(209, 209, 209)
#define X11_RGB_grey82 X11_RGB(209, 209, 209)
#define X11_RGB_gray83 X11_RGB(212, 212, 212)
#define X11_RGB_grey83 X11_RGB(212, 212, 212)
#define X11_RGB_gray84 X11_RGB(214, 214, 214)
#define X11_RGB_grey84 X11_RGB(214, 214, 214)
#define X11_RGB_gray85 X11_RGB(217, 217, 217)
#define X11_RGB_grey85 X11_RGB(217, 217, 217)
#define X11_RGB_gray86 X11_RGB(219, 219, 219)
#define X11_RGB_grey86 X11_RGB(219, 219, 219)
#define X11_RGB_gray87 X11_RGB(222, 222, 222)
#define X11_RGB_grey87 X11_RGB(222, 222, 222)
#define X11_RGB_gray88 X11_RGB(224, 224, 224)
#define X11_RGB_grey88 X11_RGB(224, 224, 224)
#define X11_RGB_gray89 X11_RGB(227, 227, 227)
#define X11_RGB_grey89 X11_RGB(227, 227, 227)
#define X11_RGB_gray90 X11_RGB(229, 229, 229)
#define X11_RGB_grey90 X11_RGB(229, 229, 229)
#define X11_RGB_gray91 X11_RGB(232, 232, 232)
#define X11_RGB_grey91 X11_RGB(232, 232, 232)
#define X11_RGB_gray92 X11_RGB(235, 235, 235)
#define X11_RGB_grey92 X11_RGB(235, 235, 235)
#define X11_RGB_gray93 X11_RGB(237, 237, 237)
#define X11_RGB_grey93 X11_RGB(237, 237, 237)
#define X11_RGB_gray94 X11_RGB(240, 240, 240)
#define X11_RGB_grey94 X11_RGB(240, 240, 240)
#define X11_RGB_gray95 X11_RGB(242, 242, 242)
#define X11_RGB_grey95 X11_RGB(242, 242, 242)
#define X11_RGB_gray96 X11_RGB(245, 245, 245)
#define X11_RGB_grey96 X11_RGB(245, 245, 245)
#define X11_RGB_gray97 X11_RGB(247, 247, 247)
#define X11_RGB_grey97 X11_RGB(247, 247, 247)
#define X11_RGB_gray98 X11_RGB(250, 250, 250)
#define X11_RGB_grey98 X11_RGB(250, 250, 250)
#define X11_RGB_gray99 X11_RGB(252, 252, 252)
#define X11_RGB_grey99 X11_RGB(252, 252, 252)
#define X11_RGB_gray100 X11_RGB(255, 255, 255)
#define X11_RGB_grey100 X11_RGB(255, 255, 255)
#define X11_RGB_dark_grey X11_RGB(169, 169, 169)
#define X11_RGB_DarkGrey X11_RGB(169, 169, 169)
#define X11_RGB_dark_gray X11_RGB(169, 169, 169)
#define X11_RGB_DarkGray X11_RGB(169, 169, 169)
#define X11_RGB_dark_blue X11_RGB(0, 0, 139)
#define X11_RGB_DarkBlue X11_RGB(0, 0, 139)
#define X11_RGB_dark_cyan X11_RGB(0, 139, 139)
#define X11_RGB_DarkCyan X11_RGB(0, 139, 139)
#define X11_RGB_dark_magenta X11_RGB(139, 0, 139)
#define X11_RGB_DarkMagenta X11_RGB(139, 0, 139)
#define X11_RGB_dark_red X11_RGB(139, 0, 0)
#define X11_RGB_DarkRed X11_RGB(139, 0, 0)
#define X11_RGB_light_green X11_RGB(144, 238, 144)
#define X11_RGB_LightGreen X11_RGB(144, 238, 144)
#endif