-
Notifications
You must be signed in to change notification settings - Fork 4
/
zt_colors.h
1383 lines (1324 loc) · 111 KB
/
zt_colors.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
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
/**************************************************************************************************
** file: zt_colors.h v 0.00 (active initial development)
**
** This software is dual-licensed to the public domain and under the following
** license: you are granted a perpetual, irrevocable license to copy, modify,
** publish, and distribute this file as you see fit.
**
** No warranty is offered or implied. Use this at your own risk.
**
**************************************************************************************************
Zero Tolerance Color List
Built from:
https://en.wikipedia.org/wiki/List_of_colors:_A-F
https://en.wikipedia.org/wiki/List_of_colors:_G-M
https://en.wikipedia.org/wiki/List_of_colors:_N-Z
Colors are categoried into general color groups. May not be entirely accurate.
It's recommended that you locate your desired color via the webpages above and then
use the following #defines to use in your code.
**************************************************************************************************/
#ifndef __zt_colors__
#define __zt_colors__
// ================================================================================================
// Whites
#define ztColor_Alabaster zt_color(.95f, .94f, .90f, 1.f)
#define ztColor_Almond zt_color(.94f, .87f, .80f, 1.f)
#define ztColor_AntiFlashWhite zt_color(.95f, .95f, .96f, 1.f)
#define ztColor_AntiqueWhite zt_color(.98f, .92f, .84f, 1.f)
#define ztColor_BabyPowder zt_color(1.0f, 1.0f, .98f, 1.f)
#define ztColor_Beige zt_color(.96f, .96f, .86f, 1.f)
#define ztColor_Bisque zt_color(1.0f, .89f, .77f, 1.f)
#define ztColor_BlanchedAlmond zt_color(1.0f, .92f, .80f, 1.f)
#define ztColor_Blond zt_color(.98f, .94f, .75f, 1.f)
#define ztColor_Bone zt_color(.89f, .85f, .79f, 1.f)
#define ztColor_Bubbles zt_color(.91f, 1.0f, 1.0f, 1.f)
#define ztColor_Cornsilk zt_color(1.0f, .97f, .86f, 1.f)
#define ztColor_CosmicLatte zt_color(1.0f, .97f, .91f, 1.f)
#define ztColor_Cream zt_color(1.0f, .99f, .82f, 1.f)
#define ztColor_Cultured zt_color(.96f, .96f, .96f, 1.f)
#define ztColor_DarkVanilla zt_color(.82f, .75f, .66f, 1.f)
#define ztColor_DustStorm zt_color(.90f, .80f, .79f, 1.f)
#define ztColor_DutchWhite zt_color(.94f, .87f, .73f, 1.f)
#define ztColor_Eggshell zt_color(.94f, .92f, .84f, 1.f)
#define ztColor_FloralWhite zt_color(1.0f, .98f, .94f, 1.f)
#define ztColor_GhostWhite zt_color(.97f, .97f, 1.0f, 1.f)
#define ztColor_Glitter zt_color(.90f, .91f, .98f, 1.f)
#define ztColor_Honeydew zt_color(.94f, 1.0f, .94f, 1.f)
#define ztColor_Isabelline zt_color(.96f, .94f, .93f, 1.f)
#define ztColor_Ivory zt_color(1.0f, 1.0f, .94f, 1.f)
#define ztColor_LavenderBlush zt_color(1.0f, .94f, .96f, 1.f)
#define ztColor_LemonChiffon zt_color(1.0f, .98f, .80f, 1.f)
#define ztColor_Linen zt_color(.98f, .94f, .90f, 1.f)
#define ztColor_Lumber zt_color(1.0f, .89f, .80f, 1.f)
#define ztColor_Magnolia zt_color(.97f, .96f, 1.0f, 1.f)
#define ztColor_Milk zt_color(.99f, 1.0f, .96f, 1.f)
#define ztColor_MintCream zt_color(.96f, 1.0f, .98f, 1.f)
#define ztColor_Moccasin zt_color(.98f, .92f, .84f, 1.f)
#define ztColor_NavajoWhite zt_color(1.0f, .87f, .68f, 1.f)
#define ztColor_Nyanza zt_color(.91f, 1.0f, .86f, 1.f)
#define ztColor_OldLace zt_color(.99f, .96f, .90f, 1.f)
#define ztColor_PapayaWhip zt_color(1.0f, .94f, .84f, 1.f)
#define ztColor_Peach zt_color(1.0f, .90f, .71f, 1.f)
#define ztColor_Pearl zt_color(.92f, .88f, .78f, 1.f)
#define ztColor_Seashell zt_color(1.0f, .96f, .93f, 1.f)
#define ztColor_Snow zt_color(1.0f, .98f, .98f, 1.f)
#define ztColor_UnbleachedSilk zt_color(1.0f, .87f, .79f, 1.f)
#define ztColor_Vanilla zt_color(.95f, .90f, .67f, 1.f)
#define ztColor_WhiteSmoke zt_color(.96f, .96f, .96f, 1.f)
// ================================================================================================
// Grays
#define ztColor_AshGrey zt_color(.70f, .75f, .71f, 1.f)
#define ztColor_AuroMetalSaurus zt_color(.43f, .50f, .50f, 1.f)
#define ztColor_BattleshipGrey zt_color(.52f, .52f, .51f, 1.f)
#define ztColor_BlueGray zt_color(.40f, .60f, .80f, 1.f)
#define ztColor_Cadet zt_color(.33f, .41f, .45f, 1.f)
#define ztColor_CadetGrey zt_color(.57f, .64f, .69f, 1.f)
#define ztColor_Charcoal zt_color(.21f, .27f, .31f, 1.f)
#define ztColor_Cinereous zt_color(.60f, .51f, .48f, 1.f)
#define ztColor_CoolGrey zt_color(.55f, .57f, .67f, 1.f)
#define ztColor_DavysGrey zt_color(.33f, .33f, .33f, 1.f)
#define ztColor_DeepTaupe zt_color(.49f, .37f, .38f, 1.f)
#define ztColor_DimGray zt_color(.41f, .41f, .41f, 1.f)
#define ztColor_PaynesGrey zt_color(.33f, .41f, .47f, 1.f)
#define ztColor_DarkGray_X11 zt_color(.66f, .66f, .66f, 1.f)
#define ztColor_DarkGunmetal zt_color(.12f, .15f, .16f, 1.f)
#define ztColor_DarkMediumGray zt_color(.66f, .66f, .66f, 1.f)
#define ztColor_DarkSlateGray zt_color(.18f, .31f, .31f, 1.f)
#define ztColor_DolphinGray zt_color(.51f, .56f, .52f, 1.f)
#define ztColor_GraniteGray zt_color(.40f, .40f, .40f, 1.f)
#define ztColor_Gainsboro zt_color(.86f, .86f, .86f, 1.f)
#define ztColor_Gray zt_color(.50f, .50f, .50f, 1.f)
#define ztColor_Gray_HTML_CSSGray zt_color(.50f, .50f, .50f, 1.f)
#define ztColor_Gray_X11Gray zt_color(.75f, .75f, .75f, 1.f)
#define ztColor_GrayAsparagus zt_color(.27f, .35f, .27f, 1.f)
#define ztColor_GrayBlue zt_color(.55f, .57f, .67f, 1.f)
#define ztColor_Gunmetal zt_color(.16f, .20f, .22f, 1.f)
#define ztColor_Independence zt_color(.30f, .32f, .43f, 1.f)
#define ztColor_LightGrayishMagenta zt_color(.80f, .60f, .80f, 1.f)
#define ztColor_LightSlateGray zt_color(.47f, .53f, .60f, 1.f)
#define ztColor_Manatee zt_color(.59f, .60f, .67f, 1.f)
#define ztColor_MummysTomb zt_color(.51f, .56f, .52f, 1.f)
#define ztColor_Nickel zt_color(.45f, .45f, .45f, 1.f)
#define ztColor_OldSilver zt_color(.52f, .52f, .51f, 1.f)
#define ztColor_PaleSilver zt_color(.79f, .75f, .73f, 1.f)
#define ztColor_PaleTaupe zt_color(.74f, .60f, .49f, 1.f)
#define ztColor_PalmLeaf zt_color(.51f, .56f, .52f, 1.f)
#define ztColor_PastelGray zt_color(.81f, .81f, .77f, 1.f)
#define ztColor_Platinum zt_color(.90f, .89f, .89f, 1.f)
#define ztColor_Quartz zt_color(.32f, .28f, .31f, 1.f)
#define ztColor_QuickSilver zt_color(.65f, .65f, .65f, 1.f)
#define ztColor_RaspberryGlace zt_color(.57f, .37f, .43f, 1.f)
#define ztColor_Rhythm zt_color(.47f, .46f, .59f, 1.f)
#define ztColor_RocketMetallic zt_color(.54f, .50f, .50f, 1.f)
#define ztColor_RomanSilver zt_color(.51f, .54f, .59f, 1.f)
#define ztColor_Shadow zt_color(.54f, .47f, .36f, 1.f)
#define ztColor_ShadowBlue zt_color(.47f, .55f, .65f, 1.f)
#define ztColor_Silver zt_color(.75f, .75f, .75f, 1.f)
#define ztColor_SilverChalice zt_color(.67f, .67f, .67f, 1.f)
#define ztColor_SlateGray zt_color(.44f, .50f, .56f, 1.f)
#define ztColor_Smoke zt_color(.45f, .51f, .46f, 1.f)
#define ztColor_SmokeyTopaz zt_color(.51f, .16f, .13f, 1.f)
#define ztColor_SmokyBlack zt_color(.06f, .05f, .03f, 1.f)
#define ztColor_SmokyTopaz zt_color(.58f, .24f, .25f, 1.f)
#define ztColor_SonicSilver zt_color(.46f, .46f, .46f, 1.f)
#define ztColor_SpaceCadet zt_color(.11f, .16f, .32f, 1.f)
#define ztColor_SpanishGray zt_color(.60f, .60f, .60f, 1.f)
#define ztColor_Stormcloud zt_color(.31f, .40f, .42f, 1.f)
#define ztColor_Taupe zt_color(.28f, .24f, .20f, 1.f)
#define ztColor_TaupeGray zt_color(.55f, .52f, .54f, 1.f)
#define ztColor_TrolleyGrey zt_color(.50f, .50f, .50f, 1.f)
#define ztColor_PurpleTaupe zt_color(.31f, .25f, .30f, 1.f)
#define ztColor_MediumTaupe zt_color(.40f, .30f, .28f, 1.f)
#define ztColor_RoseQuartz zt_color(.67f, .60f, .66f, 1.f)
#define ztColor_Timberwolf zt_color(.86f, .84f, .82f, 1.f)
#define ztColor_Xanadu zt_color(.45f, .53f, .47f, 1.f)
// ================================================================================================
// Blacks
#define ztColor_Arsenic zt_color(.23f, .27f, .29f, 1.f)
#define ztColor_Bistre zt_color(.24f, .17f, .12f, 1.f)
#define ztColor_BlackBean zt_color(.24f, .05f, .01f, 1.f)
#define ztColor_BlackCoral zt_color(.33f, .38f, .44f, 1.f)
#define ztColor_BlackLeatherJacket zt_color(.15f, .21f, .16f, 1.f)
#define ztColor_BlackOlive zt_color(.23f, .24f, .21f, 1.f)
#define ztColor_BlackShadows zt_color(.75f, .69f, .70f, 1.f)
#define ztColor_CoolBlack zt_color( .0f, .18f, .39f, 1.f)
#define ztColor_DarkTaupe zt_color(.28f, .24f, .20f, 1.f)
#define ztColor_Ebony zt_color(.33f, .36f, .31f, 1.f)
#define ztColor_EerieBlack zt_color(.11f, .11f, .11f, 1.f)
#define ztColor_Jet zt_color(.20f, .20f, .20f, 1.f)
#define ztColor_Licorice zt_color(.10f, .07f, .06f, 1.f)
#define ztColor_MidnightBlue zt_color(.10f, .10f, .44f, 1.f)
#define ztColor_Onyx zt_color(.21f, .22f, .22f, 1.f)
#define ztColor_OuterSpace zt_color(.25f, .29f, .30f, 1.f)
#define ztColor_RaisinBlack zt_color(.14f, .13f, .14f, 1.f)
#define ztColor_RichBlack zt_color( .0f, .25f, .25f, 1.f)
#define ztColor_RichBlack_FOGRA29 zt_color( .0f, .04f, .07f, 1.f)
#define ztColor_RichBlack_FOGRA39 zt_color( .0f, .01f, .01f, 1.f)
#define ztColor_WarmBlack zt_color( .0f, .26f, .26f, 1.f)
// ================================================================================================
// Magentas
#define ztColor_Amaranth zt_color(.90f, .17f, .31f, 1.f)
#define ztColor_AmaranthDeepPurple zt_color(.62f, .17f, .41f, 1.f)
#define ztColor_AmaranthPink zt_color(.95f, .61f, .73f, 1.f)
#define ztColor_AmaranthPurple zt_color(.67f, .15f, .31f, 1.f)
#define ztColor_AntiqueFuchsia zt_color(.57f, .36f, .51f, 1.f)
#define ztColor_Awesome zt_color(1.0f, .13f, .32f, 1.f)
#define ztColor_Blush zt_color(.87f, .36f, .51f, 1.f)
#define ztColor_BrilliantRose zt_color(1.0f, .33f, .64f, 1.f)
#define ztColor_Cerise zt_color(.87f, .19f, .39f, 1.f)
#define ztColor_Crimson zt_color(.86f, .08f, .24f, 1.f)
#define ztColor_DarkMagenta zt_color(.55f, .0f, .55f, 1.f)
#define ztColor_DarkOrchid zt_color(.60f, .20f, .80f, 1.f)
#define ztColor_DeepFuchsia zt_color(.76f, .33f, .76f, 1.f)
#define ztColor_DeepMagenta zt_color(.80f, .0f, .80f, 1.f)
#define ztColor_Desire zt_color(.92f, .24f, .33f, 1.f)
#define ztColor_DogwoodRose zt_color(.84f, .09f, .41f, 1.f)
#define ztColor_Eggplant zt_color(.38f, .25f, .32f, 1.f)
#define ztColor_Fandango zt_color(.71f, .20f, .54f, 1.f)
#define ztColor_FashionFuchsia zt_color(.96f, .0f, .63f, 1.f)
#define ztColor_Folly zt_color(1.0f, .0f, .31f, 1.f)
#define ztColor_FrenchFuchsia zt_color(.99f, .25f, .57f, 1.f)
#define ztColor_Fuchsia zt_color(1.0f, .0f, 1.0f, 1.f)
#define ztColor_Fuchsia_Crayola zt_color(.76f, .33f, .76f, 1.f)
#define ztColor_FuchsiaPurple zt_color(.80f, .22f, .48f, 1.f)
#define ztColor_FuchsiaRose zt_color(.78f, .26f, .46f, 1.f)
#define ztColor_HollywoodCerise zt_color(.96f, .0f, .63f, 1.f)
#define ztColor_LightFuchsiaPink zt_color(.98f, .52f, .94f, 1.f)
#define ztColor_LightOrchid zt_color(.90f, .66f, .84f, 1.f)
#define ztColor_LightMediumOrchid zt_color(.83f, .61f, .80f, 1.f)
#define ztColor_HotMagenta zt_color(1.0f, .11f, .81f, 1.f)
#define ztColor_Magenta_Crayola zt_color(1.0f, .33f, .64f, 1.f)
#define ztColor_Magenta_Dye zt_color(.79f, .12f, .48f, 1.f)
#define ztColor_Magenta_Pantone zt_color(.82f, .25f, .49f, 1.f)
#define ztColor_Magenta_Process zt_color(1.0f, .0f, .56f, 1.f)
#define ztColor_MagentaHaze zt_color(.62f, .27f, .46f, 1.f)
#define ztColor_MagentaPink zt_color(.80f, .20f, .55f, 1.f)
#define ztColor_MagicPotion zt_color(1.0f, .27f, .40f, 1.f)
#define ztColor_MediumLavenderMagenta zt_color(.87f, .63f, .87f, 1.f)
#define ztColor_MediumOrchid zt_color(.73f, .33f, .83f, 1.f)
#define ztColor_Mulberry zt_color(.77f, .29f, .55f, 1.f)
#define ztColor_NeonFuchsia zt_color(1.0f, .25f, .39f, 1.f)
#define ztColor_OldRose zt_color(.75f, .50f, .51f, 1.f)
#define ztColor_Orchid zt_color(.85f, .44f, .84f, 1.f)
#define ztColor_PaleChestnut zt_color(.87f, .68f, .69f, 1.f)
#define ztColor_PaleMagenta zt_color(.98f, .52f, .90f, 1.f)
#define ztColor_PaleMagentaPink zt_color(1.0f, .60f, .80f, 1.f)
#define ztColor_PastelMagenta zt_color(.96f, .60f, .76f, 1.f)
#define ztColor_Plum zt_color(.56f, .27f, .52f, 1.f)
#define ztColor_Plum_Web zt_color(.87f, .63f, .87f, 1.f)
#define ztColor_PurplePizzazz zt_color(1.0f, .31f, .85f, 1.f)
#define ztColor_QuinacridoneMagenta zt_color(.56f, .23f, .35f, 1.f)
#define ztColor_Raspberry zt_color(.89f, .04f, .36f, 1.f)
#define ztColor_RaspberryRose zt_color(.70f, .27f, .42f, 1.f)
#define ztColor_RazzleDazzleRose zt_color(1.0f, .20f, .80f, 1.f)
#define ztColor_Razzmatazz zt_color(.89f, .15f, .42f, 1.f)
#define ztColor_RedViolet zt_color(.78f, .08f, .52f, 1.f)
#define ztColor_Rose zt_color(1.0f, .0f, .50f, 1.f)
#define ztColor_RoyalFuchsia zt_color(.79f, .17f, .57f, 1.f)
#define ztColor_SkyMagenta zt_color(.81f, .44f, .69f, 1.f)
#define ztColor_SteelPink zt_color(.80f, .20f, .80f, 1.f)
#define ztColor_Telemagenta zt_color(.81f, .20f, .46f, 1.f)
#define ztColor_VioletRed zt_color(.97f, .33f, .58f, 1.f)
#define ztColor_VividCerise zt_color(.85f, .11f, .51f, 1.f)
#define ztColor_VividOrchid zt_color(.80f, .0f, 1.0f, 1.f)
#define ztColor_WinterSky zt_color(1.0f, .0f, .49f, 1.f)
// ================================================================================================
// Pinks
#define ztColor_AntiqueRuby zt_color(.52f, .11f, .18f, 1.f)
#define ztColor_BabyPink zt_color(.96f, .76f, .76f, 1.f)
#define ztColor_BakerMillerPink zt_color(1.0f, .57f, .69f, 1.f)
#define ztColor_BarbiePink zt_color(.88f, .13f, .54f, 1.f)
#define ztColor_Begonia zt_color(.98f, .43f, .47f, 1.f)
#define ztColor_BigDipORuby zt_color(.61f, .15f, .26f, 1.f)
#define ztColor_BrightPink zt_color(1.0f, .0f, .50f, 1.f)
#define ztColor_BrinkPink zt_color(.98f, .38f, .50f, 1.f)
#define ztColor_BubbleGum zt_color(1.0f, .76f, .80f, 1.f)
#define ztColor_CameoPink zt_color(.94f, .73f, .80f, 1.f)
#define ztColor_CandyPink zt_color(.89f, .44f, .48f, 1.f)
#define ztColor_Carmine zt_color(.59f, .0f, .09f, 1.f)
#define ztColor_CarminePink zt_color(.92f, .30f, .26f, 1.f)
#define ztColor_CarnationPink zt_color(1.0f, .65f, .79f, 1.f)
#define ztColor_CerisePink zt_color(.93f, .23f, .51f, 1.f)
#define ztColor_ChampagnePink zt_color(.95f, .87f, .81f, 1.f)
#define ztColor_CharmPink zt_color(.90f, .56f, .67f, 1.f)
#define ztColor_CherryBlossomPink zt_color(1.0f, .72f, .77f, 1.f)
#define ztColor_ChinaPink zt_color(.87f, .44f, .63f, 1.f)
#define ztColor_ChinaRose zt_color(.66f, .32f, .43f, 1.f)
#define ztColor_CongoPink zt_color(.97f, .51f, .47f, 1.f)
#define ztColor_CoralPink zt_color(.97f, .51f, .47f, 1.f)
#define ztColor_CoralReef zt_color(.99f, .49f, .43f, 1.f)
#define ztColor_CottonCandy zt_color(1.0f, .74f, .85f, 1.f)
#define ztColor_Cyclamen zt_color(.96f, .44f, .63f, 1.f)
#define ztColor_DarkPink zt_color(.91f, .33f, .50f, 1.f)
#define ztColor_DarkCoral zt_color(.80f, .36f, .27f, 1.f)
#define ztColor_DarkTerraCotta zt_color(.80f, .31f, .36f, 1.f)
#define ztColor_DeepCarmine zt_color(.66f, .13f, .24f, 1.f)
#define ztColor_DeepCarminePink zt_color(.94f, .19f, .22f, 1.f)
#define ztColor_DeepCerise zt_color(.85f, .20f, .53f, 1.f)
#define ztColor_DeepChampagne zt_color(.98f, .84f, .65f, 1.f)
#define ztColor_DeepMauve zt_color(.83f, .45f, .83f, 1.f)
#define ztColor_DeepPink zt_color(1.0f, .08f, .58f, 1.f)
#define ztColor_DeepPuce zt_color(.66f, .36f, .41f, 1.f)
#define ztColor_DeepRuby zt_color(.52f, .25f, .36f, 1.f)
#define ztColor_FandangoPink zt_color(.87f, .32f, .52f, 1.f)
#define ztColor_FluorescentPink zt_color(1.0f, .08f, .58f, 1.f)
#define ztColor_FieryRose zt_color(1.0f, .33f, .44f, 1.f)
#define ztColor_FrenchMauve zt_color(.83f, .45f, .83f, 1.f)
#define ztColor_FrenchPink zt_color(.99f, .42f, .62f, 1.f)
#define ztColor_FrenchPuce zt_color(.31f, .09f, .04f, 1.f)
#define ztColor_FrenchRose zt_color(.96f, .29f, .54f, 1.f)
#define ztColor_Frostbite zt_color(.91f, .21f, .65f, 1.f)
#define ztColor_FuchsiaPink zt_color(1.0f, .47f, 1.0f, 1.f)
#define ztColor_FuzzyWuzzy zt_color(.80f, .40f, .40f, 1.f)
#define ztColor_HotPink zt_color(1.0f, .41f, .71f, 1.f)
#define ztColor_JapaneseCarmine zt_color(.62f, .16f, .20f, 1.f)
#define ztColor_JellyBean zt_color(.85f, .38f, .31f, 1.f)
#define ztColor_Kobi zt_color(.91f, .62f, .77f, 1.f)
#define ztColor_LavenderPink zt_color(.98f, .68f, .82f, 1.f)
#define ztColor_LightApricot zt_color(.99f, .84f, .69f, 1.f)
#define ztColor_LightCarminePink zt_color(.90f, .40f, .44f, 1.f)
#define ztColor_LightCoral zt_color(.94f, .50f, .50f, 1.f)
#define ztColor_LightDeepPink zt_color(1.0f, .36f, .80f, 1.f)
#define ztColor_LightHotPink zt_color(1.0f, .70f, .87f, 1.f)
#define ztColor_LightPink zt_color(1.0f, .71f, .76f, 1.f)
#define ztColor_LightSalmon zt_color(1.0f, .63f, .48f, 1.f)
#define ztColor_LightSalmonPink zt_color(1.0f, .60f, .60f, 1.f)
#define ztColor_LightThulianPink zt_color(.90f, .56f, .67f, 1.f)
#define ztColor_Mauve zt_color(.88f, .69f, 1.0f, 1.f)
#define ztColor_MediumCarmine zt_color(.69f, .25f, .21f, 1.f)
#define ztColor_MediumChampagne zt_color(.95f, .90f, .67f, 1.f)
#define ztColor_MediumRuby zt_color(.67f, .25f, .41f, 1.f)
#define ztColor_Melon zt_color(.99f, .74f, .71f, 1.f)
#define ztColor_MexicanPink zt_color(.89f, .0f, .49f, 1.f)
#define ztColor_MimiPink zt_color(1.0f, .85f, .91f, 1.f)
#define ztColor_MistyRose zt_color(1.0f, .89f, .88f, 1.f)
#define ztColor_MountbattenPink zt_color(.60f, .48f, .55f, 1.f)
#define ztColor_Mystic zt_color(.84f, .32f, .51f, 1.f)
#define ztColor_NadeshikoPink zt_color(.96f, .68f, .78f, 1.f)
#define ztColor_NewYorkPink zt_color(.84f, .51f, .50f, 1.f)
#define ztColor_OldMauve zt_color(.40f, .19f, .28f, 1.f)
#define ztColor_OgreOdor zt_color(.99f, .32f, .25f, 1.f)
#define ztColor_OperaMauve zt_color(.72f, .52f, .65f, 1.f)
#define ztColor_OrchidPink zt_color(.95f, .74f, .80f, 1.f)
#define ztColor_PaleCarmine zt_color(.69f, .25f, .21f, 1.f)
#define ztColor_PalePink zt_color(.98f, .85f, .87f, 1.f)
#define ztColor_ParadisePink zt_color(.90f, .24f, .38f, 1.f)
#define ztColor_ParrotPink zt_color(.85f, .60f, .63f, 1.f)
#define ztColor_PastelPink zt_color(.87f, .65f, .64f, 1.f)
#define ztColor_PersianPink zt_color(.97f, .50f, .75f, 1.f)
#define ztColor_PersianRose zt_color(1.0f, .16f, .64f, 1.f)
#define ztColor_PictorialCarmine zt_color(.76f, .04f, .31f, 1.f)
#define ztColor_PiggyPink zt_color(.99f, .87f, .90f, 1.f)
#define ztColor_Pink zt_color(1.0f, .75f, .80f, 1.f)
#define ztColor_Pink_Pantone zt_color(.84f, .28f, .58f, 1.f)
#define ztColor_PinkFlamingo zt_color(.99f, .45f, .99f, 1.f)
#define ztColor_PinkLace zt_color(1.0f, .87f, .96f, 1.f)
#define ztColor_PinkLavender zt_color(.85f, .70f, .82f, 1.f)
#define ztColor_PinkOrange zt_color(1.0f, .60f, .40f, 1.f)
#define ztColor_PinkPearl zt_color(.91f, .67f, .81f, 1.f)
#define ztColor_PinkRaspberry zt_color(.60f, .0f, .21f, 1.f)
#define ztColor_PinkSherbet zt_color(.97f, .56f, .65f, 1.f)
#define ztColor_Phlox zt_color(.87f, .0f, 1.0f, 1.f)
#define ztColor_PrincessPerfume zt_color(1.0f, .52f, .81f, 1.f)
#define ztColor_Puce zt_color(.80f, .53f, .60f, 1.f)
#define ztColor_QueenPink zt_color(.91f, .80f, .84f, 1.f)
#define ztColor_RaspberryPink zt_color(.89f, .31f, .60f, 1.f)
#define ztColor_RichCarmine zt_color(.84f, .0f, .25f, 1.f)
#define ztColor_RoseBonbon zt_color(.98f, .26f, .62f, 1.f)
#define ztColor_RoseDust zt_color(.62f, .37f, .44f, 1.f)
#define ztColor_RoseGold zt_color(.72f, .43f, .47f, 1.f)
#define ztColor_RosePink zt_color(1.0f, .40f, .80f, 1.f)
#define ztColor_Ruber zt_color(.81f, .27f, .46f, 1.f)
#define ztColor_Ruby zt_color(.88f, .07f, .37f, 1.f)
#define ztColor_RuddyPink zt_color(.88f, .56f, .59f, 1.f)
#define ztColor_Salmon zt_color(.98f, .50f, .45f, 1.f)
#define ztColor_SalmonPink zt_color(1.0f, .57f, .64f, 1.f)
#define ztColor_SasquatchSocks zt_color(1.0f, .27f, .51f, 1.f)
#define ztColor_SchaussPink zt_color(1.0f, .57f, .69f, 1.f)
#define ztColor_Shampoo zt_color(1.0f, .81f, .95f, 1.f)
#define ztColor_ShimmeringBlush zt_color(.85f, .53f, .58f, 1.f)
#define ztColor_ShockingPink zt_color(.99f, .06f, .75f, 1.f)
#define ztColor_ShockingPink_Crayola zt_color(1.0f, .44f, 1.0f, 1.f)
#define ztColor_SilverPink zt_color(.77f, .68f, .68f, 1.f)
#define ztColor_SolidPink zt_color(.54f, .22f, .26f, 1.f)
#define ztColor_SpanishCarmine zt_color(.82f, .0f, .28f, 1.f)
#define ztColor_SpanishPink zt_color(.97f, .75f, .75f, 1.f)
#define ztColor_Strawberry zt_color(.99f, .35f, .55f, 1.f)
#define ztColor_SuperPink zt_color(.81f, .42f, .66f, 1.f)
#define ztColor_TangoPink zt_color(.89f, .44f, .48f, 1.f)
#define ztColor_ThulianPink zt_color(.87f, .44f, .63f, 1.f)
#define ztColor_TickleMePink zt_color(.99f, .54f, .67f, 1.f)
#define ztColor_Tulip zt_color(1.0f, .53f, .55f, 1.f)
#define ztColor_UltraPink zt_color(1.0f, .44f, 1.0f, 1.f)
#define ztColor_FlamingoPink zt_color(.99f, .56f, .67f, 1.f)
#define ztColor_VanillaIce zt_color(.95f, .56f, .66f, 1.f)
#define ztColor_VividTangerine zt_color(1.0f, .63f, .54f, 1.f)
#define ztColor_WildWatermelon zt_color(.99f, .42f, .52f, 1.f)
// ================================================================================================
// Reds
#define ztColor_AlabamaCrimson zt_color(.69f, .0f, .16f, 1.f)
#define ztColor_AlizarinCrimson zt_color(.89f, .15f, .21f, 1.f)
#define ztColor_AmaranthRed zt_color(.83f, .13f, .18f, 1.f)
#define ztColor_AmericanRose zt_color(1.0f, .01f, .24f, 1.f)
#define ztColor_Auburn zt_color(.65f, .16f, .16f, 1.f)
#define ztColor_BarnRed zt_color(.49f, .04f, .01f, 1.f)
#define ztColor_BittersweetShimmer zt_color(.75f, .31f, .32f, 1.f)
#define ztColor_BostonUniversityRed zt_color(.80f, .0f, .0f, 1.f)
#define ztColor_BrickRed zt_color(.80f, .25f, .33f, 1.f)
#define ztColor_BrightMaroon zt_color(.76f, .13f, .28f, 1.f)
#define ztColor_BulgarianRose zt_color(.28f, .02f, .03f, 1.f)
#define ztColor_Burgundy zt_color(.50f, .0f, .13f, 1.f)
#define ztColor_CadmiumRed zt_color(.89f, .0f, .13f, 1.f)
#define ztColor_CandyAppleRed zt_color(1.0f, .03f, .0f, 1.f)
#define ztColor_Cardinal zt_color(.77f, .12f, .23f, 1.f)
#define ztColor_CarmineRed zt_color(1.0f, .0f, .22f, 1.f)
#define ztColor_Carmine_MnP zt_color(.84f, .0f, .25f, 1.f)
#define ztColor_Carnelian zt_color(.70f, .11f, .11f, 1.f)
#define ztColor_CGRed zt_color(.88f, .24f, .19f, 1.f)
#define ztColor_Cherry zt_color(.87f, .19f, .39f, 1.f)
#define ztColor_ChineseRed zt_color(.67f, .22f, .12f, 1.f)
#define ztColor_Cinnabar zt_color(.89f, .26f, .20f, 1.f)
#define ztColor_Cinnamon zt_color(.82f, .41f, .12f, 1.f)
#define ztColor_CinnamonSatin zt_color(.80f, .38f, .49f, 1.f)
#define ztColor_ClassicRose zt_color(.98f, .80f, .91f, 1.f)
#define ztColor_Claret zt_color(.50f, .09f, .20f, 1.f)
#define ztColor_Coquelicot zt_color(1.0f, .22f, .0f, 1.f)
#define ztColor_CoralRed zt_color(1.0f, .25f, .25f, 1.f)
#define ztColor_CornellRed zt_color(.70f, .11f, .11f, 1.f)
#define ztColor_CrimsonGlory zt_color(.75f, .0f, .20f, 1.f)
#define ztColor_CrimsonRed zt_color(.60f, .0f, .0f, 1.f)
#define ztColor_DarkCandyAppleRed zt_color(.64f, .0f, .0f, 1.f)
#define ztColor_DarkLava zt_color(.28f, .24f, .20f, 1.f)
#define ztColor_DarkPastelRed zt_color(.76f, .23f, .13f, 1.f)
#define ztColor_DarkRed zt_color(.55f, .0f, .0f, 1.f)
#define ztColor_DarkScarlet zt_color(.34f, .01f, .10f, 1.f)
#define ztColor_DebianRed zt_color(.84f, .04f, .33f, 1.f)
#define ztColor_DeepMaroon zt_color(.51f, .0f, .0f, 1.f)
#define ztColor_DeepRed zt_color(.52f, .0f, .0f, 1.f)
#define ztColor_DeepTuscanRed zt_color(.40f, .26f, .30f, 1.f)
#define ztColor_DingyDungeon zt_color(.77f, .19f, .32f, 1.f)
#define ztColor_ElectricCrimson zt_color(1.0f, .0f, .25f, 1.f)
#define ztColor_EnglishRed zt_color(.67f, .29f, .32f, 1.f)
#define ztColor_EnglishVermillion zt_color(.80f, .28f, .29f, 1.f)
#define ztColor_FaluRed zt_color(.50f, .09f, .09f, 1.f)
#define ztColor_FerrariRed zt_color(1.0f, .16f, .0f, 1.f)
#define ztColor_Firebrick zt_color(.70f, .13f, .13f, 1.f)
#define ztColor_FireEngineRed zt_color(.81f, .13f, .16f, 1.f)
#define ztColor_Flame zt_color(.89f, .35f, .13f, 1.f)
#define ztColor_FrenchBeige zt_color(.65f, .48f, .36f, 1.f)
#define ztColor_FrenchRaspberry zt_color(.78f, .17f, .28f, 1.f)
#define ztColor_FrenchWine zt_color(.67f, .12f, .27f, 1.f)
#define ztColor_HarvardCrimson zt_color(.79f, .0f, .09f, 1.f)
#define ztColor_HeidelbergRed zt_color(.59f, .0f, .09f, 1.f)
#define ztColor_ImperialRed zt_color(.93f, .16f, .22f, 1.f)
#define ztColor_IndianRed zt_color(.80f, .36f, .36f, 1.f)
#define ztColor_InfraRed zt_color(1.0f, .29f, .42f, 1.f)
#define ztColor_Jasper zt_color(.84f, .23f, .24f, 1.f)
#define ztColor_KUCrimson zt_color(.91f, .0f, .05f, 1.f)
#define ztColor_Lava zt_color(.81f, .06f, .13f, 1.f)
#define ztColor_LightCrimson zt_color(.96f, .41f, .57f, 1.f)
#define ztColor_LightRedOchre zt_color(.91f, .45f, .32f, 1.f)
#define ztColor_Lust zt_color(.90f, .13f, .13f, 1.f)
#define ztColor_MadderLake zt_color(.80f, .20f, .21f, 1.f)
#define ztColor_Maroon_Crayola zt_color(.76f, .13f, .28f, 1.f)
#define ztColor_Maroon_HTML_CSS zt_color(.50f, .0f, .0f, 1.f)
#define ztColor_Maroon_X11 zt_color(.69f, .19f, .38f, 1.f)
#define ztColor_MaximumRed zt_color(.85f, .13f, .13f, 1.f)
#define ztColor_MaximumRedPurple zt_color(.65f, .23f, .47f, 1.f)
#define ztColor_Mahogany zt_color(.75f, .25f, .0f, 1.f)
#define ztColor_MediumCandyAppleRed zt_color(.89f, .02f, .17f, 1.f)
#define ztColor_MediumRedViolet zt_color(.73f, .20f, .52f, 1.f)
#define ztColor_MediumTuscanRed zt_color(.47f, .27f, .23f, 1.f)
#define ztColor_MediumVermilion zt_color(.85f, .38f, .23f, 1.f)
#define ztColor_MiddleRed zt_color(.90f, .56f, .45f, 1.f)
#define ztColor_MiddleRedPurple zt_color( .0f, .33f, .33f, 1.f)
#define ztColor_MordantRed19 zt_color(.68f, .05f, .0f, 1.f)
#define ztColor_MysticMaroon zt_color(.68f, .26f, .47f, 1.f)
#define ztColor_OldBurgundy zt_color(.26f, .19f, .18f, 1.f)
#define ztColor_OUCrimsonRed zt_color(.60f, .0f, .0f, 1.f)
#define ztColor_PaleRedViolet zt_color(.86f, .44f, .58f, 1.f)
#define ztColor_PastelRed zt_color(1.0f, .41f, .38f, 1.f)
#define ztColor_PermanentGeraniumLake zt_color(.88f, .17f, .17f, 1.f)
#define ztColor_PersianRed zt_color(.80f, .20f, .20f, 1.f)
#define ztColor_Popstar zt_color(.75f, .31f, .38f, 1.f)
#define ztColor_PuceRed zt_color(.45f, .18f, .22f, 1.f)
#define ztColor_RadicalRed zt_color(1.0f, .21f, .37f, 1.f)
#define ztColor_Red_Crayola zt_color(.93f, .13f, .30f, 1.f)
#define ztColor_Red_Munsell zt_color(.95f, .0f, .24f, 1.f)
#define ztColor_Red_NCS zt_color(.77f, .01f, .20f, 1.f)
#define ztColor_Red_Pantone zt_color(.93f, .16f, .22f, 1.f)
#define ztColor_Red_Pigment zt_color(.93f, .11f, .14f, 1.f)
#define ztColor_Red_RYB zt_color(1.0f, .15f, .07f, 1.f)
#define ztColor_RedBrown zt_color(.65f, .16f, .16f, 1.f)
#define ztColor_RedDevil zt_color(.53f, .0f, .07f, 1.f)
#define ztColor_RedOrange zt_color(1.0f, .33f, .29f, 1.f)
#define ztColor_RedPurple zt_color(.89f, .0f, .47f, 1.f)
#define ztColor_RedSalsa zt_color(.99f, .23f, .29f, 1.f)
#define ztColor_Redwood zt_color(.64f, .35f, .32f, 1.f)
#define ztColor_RichMaroon zt_color(.69f, .19f, .38f, 1.f)
#define ztColor_RoseRed zt_color(.76f, .12f, .34f, 1.f)
#define ztColor_RoseMadder zt_color(.89f, .15f, .21f, 1.f)
#define ztColor_RoseVale zt_color(.67f, .31f, .32f, 1.f)
#define ztColor_Rosewood zt_color(.40f, .0f, .04f, 1.f)
#define ztColor_RossoCorsa zt_color(.83f, .0f, .0f, 1.f)
#define ztColor_RubineRed zt_color(.82f, .0f, .34f, 1.f)
#define ztColor_RubyRed zt_color(.61f, .07f, .12f, 1.f)
#define ztColor_Ruddy zt_color(1.0f, .0f, .16f, 1.f)
#define ztColor_Rust zt_color(.72f, .25f, .05f, 1.f)
#define ztColor_RustyRed zt_color(.85f, .17f, .26f, 1.f)
#define ztColor_Sangria zt_color(.57f, .0f, .04f, 1.f)
#define ztColor_Scarlet zt_color(1.0f, .14f, .0f, 1.f)
#define ztColor_SizzlingRed zt_color(1.0f, .22f, .33f, 1.f)
#define ztColor_SpartanCrimson zt_color(.62f, .07f, .09f, 1.f)
#define ztColor_SpanishCrimson zt_color(.90f, .10f, .30f, 1.f)
#define ztColor_SpanishRed zt_color(.90f, .0f, .15f, 1.f)
#define ztColor_SunburntCyclops zt_color(1.0f, .25f, .30f, 1.f)
#define ztColor_Stizza zt_color(.60f, .0f, .0f, 1.f)
#define ztColor_TerraCotta zt_color(.89f, .45f, .36f, 1.f)
#define ztColor_TractorRed zt_color(.99f, .05f, .21f, 1.f)
#define ztColor_TuscanRed zt_color(.49f, .28f, .28f, 1.f)
#define ztColor_UARed zt_color(.85f, .0f, .30f, 1.f)
#define ztColor_UltraRed zt_color(.99f, .42f, .52f, 1.f)
#define ztColor_UPMaroon zt_color(.48f, .07f, .07f, 1.f)
#define ztColor_UpsdellRed zt_color(.68f, .13f, .16f, 1.f)
#define ztColor_USCCardinal zt_color(.60f, .0f, .0f, 1.f)
#define ztColor_UtahCrimson zt_color(.83f, .0f, .25f, 1.f)
#define ztColor_VenetianRed zt_color(.78f, .03f, .08f, 1.f)
#define ztColor_Vermilion zt_color(.89f, .26f, .20f, 1.f)
#define ztColor_VividAuburn zt_color(.57f, .15f, .14f, 1.f)
#define ztColor_VividBurgundy zt_color(.62f, .11f, .21f, 1.f)
#define ztColor_VividCrimson zt_color(.80f, .0f, .20f, 1.f)
#define ztColor_VividRaspberry zt_color(1.0f, .0f, .42f, 1.f)
#define ztColor_VividRed zt_color(.97f, .05f, .10f, 1.f)
#define ztColor_VividRedTangelo zt_color(.87f, .38f, .14f, 1.f)
#define ztColor_VividVermilion zt_color(.90f, .38f, .14f, 1.f)
#define ztColor_Wine zt_color(.45f, .18f, .22f, 1.f)
#define ztColor_WildStrawberry zt_color(1.0f, .26f, .64f, 1.f)
// ================================================================================================
// Browns
#define ztColor_Amber zt_color(1.0f, .75f, .0f, 1.f)
#define ztColor_Amber_SAE_ECE zt_color(1.0f, .49f, .0f, 1.f)
#define ztColor_AntiqueBrass zt_color(.80f, .58f, .46f, 1.f)
#define ztColor_AntiqueBronze zt_color(.40f, .36f, .12f, 1.f)
#define ztColor_Bazaar zt_color(.60f, .47f, .48f, 1.f)
#define ztColor_Beaver zt_color(.62f, .51f, .44f, 1.f)
#define ztColor_BistreBrown zt_color(.59f, .44f, .09f, 1.f)
#define ztColor_BlastOffBronze zt_color(.65f, .44f, .39f, 1.f)
#define ztColor_Bole zt_color(.47f, .27f, .23f, 1.f)
#define ztColor_Bronze zt_color(.80f, .50f, .20f, 1.f)
#define ztColor_Brown_Traditional zt_color(.59f, .29f, .0f, 1.f)
#define ztColor_Brown_Web zt_color(.65f, .16f, .16f, 1.f)
#define ztColor_BrownNose zt_color(.42f, .27f, .14f, 1.f)
#define ztColor_BrownSugar zt_color(.69f, .43f, .30f, 1.f)
#define ztColor_BrownYellow zt_color(.80f, .60f, .40f, 1.f)
#define ztColor_Buff zt_color(.94f, .86f, .51f, 1.f)
#define ztColor_Burlywood zt_color(.87f, .72f, .53f, 1.f)
#define ztColor_BurnishedBrown zt_color(.63f, .48f, .45f, 1.f)
#define ztColor_BurntSienna zt_color(.91f, .45f, .32f, 1.f)
#define ztColor_BurntUmber zt_color(.54f, .20f, .14f, 1.f)
#define ztColor_CafeAuLait zt_color(.65f, .48f, .36f, 1.f)
#define ztColor_CafeNoir zt_color(.29f, .21f, .13f, 1.f)
#define ztColor_Camel zt_color(.76f, .60f, .42f, 1.f)
#define ztColor_CaputMortuum zt_color(.35f, .15f, .13f, 1.f)
#define ztColor_Catawba zt_color(.44f, .21f, .26f, 1.f)
#define ztColor_CedarChest zt_color(.79f, .35f, .29f, 1.f)
#define ztColor_Chamoisee zt_color(.63f, .47f, .35f, 1.f)
#define ztColor_Chestnut zt_color(.58f, .27f, .21f, 1.f)
#define ztColor_Chocolate_Traditional zt_color(.48f, .25f, .0f, 1.f)
#define ztColor_Chocolate_Web zt_color(.82f, .41f, .12f, 1.f)
#define ztColor_Citrine zt_color(.89f, .82f, .04f, 1.f)
#define ztColor_CocoaBrown zt_color(.82f, .41f, .12f, 1.f)
#define ztColor_Coconut zt_color(.59f, .35f, .24f, 1.f)
#define ztColor_Coffee zt_color(.44f, .31f, .22f, 1.f)
#define ztColor_Copper zt_color(.72f, .45f, .20f, 1.f)
#define ztColor_Copper_Crayola zt_color(.85f, .54f, .40f, 1.f)
#define ztColor_CopperPenny zt_color(.68f, .44f, .41f, 1.f)
#define ztColor_CopperRed zt_color(.80f, .43f, .32f, 1.f)
#define ztColor_CopperRose zt_color(.60f, .40f, .40f, 1.f)
#define ztColor_Cordovan zt_color(.54f, .25f, .27f, 1.f)
#define ztColor_CoyoteBrown zt_color(.51f, .38f, .24f, 1.f)
#define ztColor_DarkBrown zt_color(.40f, .26f, .13f, 1.f)
#define ztColor_DarkBrownTangelo zt_color(.53f, .40f, .31f, 1.f)
#define ztColor_DarkChestnut zt_color(.60f, .41f, .38f, 1.f)
#define ztColor_DarkKhaki zt_color(.74f, .72f, .42f, 1.f)
#define ztColor_DarkSienna zt_color(.24f, .08f, .08f, 1.f)
#define ztColor_DarkLiver zt_color(.33f, .29f, .31f, 1.f)
#define ztColor_DarkLiver_Horses zt_color(.33f, .24f, .22f, 1.f)
#define ztColor_DarkPuce zt_color(.31f, .23f, .24f, 1.f)
#define ztColor_DarkTan zt_color(.57f, .51f, .32f, 1.f)
#define ztColor_DeepChestnut zt_color(.73f, .31f, .28f, 1.f)
#define ztColor_DeepCoffee zt_color(.44f, .26f, .25f, 1.f)
#define ztColor_Deer zt_color(.73f, .53f, .35f, 1.f)
#define ztColor_Desert zt_color(.76f, .60f, .42f, 1.f)
#define ztColor_DesertSand zt_color(.93f, .79f, .69f, 1.f)
#define ztColor_Dirt zt_color(.61f, .46f, .33f, 1.f)
#define ztColor_DonkeyBrown zt_color(.40f, .30f, .16f, 1.f)
#define ztColor_Drab zt_color(.59f, .44f, .09f, 1.f)
#define ztColor_Ecru zt_color(.76f, .70f, .50f, 1.f)
#define ztColor_Fallow zt_color(.76f, .60f, .42f, 1.f)
#define ztColor_Fawn zt_color(.90f, .67f, .44f, 1.f)
#define ztColor_Feldspar zt_color(.99f, .84f, .69f, 1.f)
#define ztColor_FieldDrab zt_color(.42f, .33f, .12f, 1.f)
#define ztColor_Flattery zt_color(.42f, .27f, .14f, 1.f)
#define ztColor_FrenchBistre zt_color(.52f, .43f, .30f, 1.f)
#define ztColor_Fulvous zt_color(.89f, .52f, .0f, 1.f)
#define ztColor_GiantsClub zt_color(.69f, .36f, .32f, 1.f)
#define ztColor_Ginger zt_color(.69f, .40f, .0f, 1.f)
#define ztColor_GoldFusion zt_color(.52f, .46f, .31f, 1.f)
#define ztColor_GoldenBrown zt_color(.60f, .40f, .08f, 1.f)
#define ztColor_Grizzly zt_color(.53f, .35f, .09f, 1.f)
#define ztColor_Grullo zt_color(.66f, .60f, .53f, 1.f)
#define ztColor_HeartGold zt_color(.50f, .50f, .0f, 1.f)
#define ztColor_Khaki_HTML_CSS_Khaki zt_color(.76f, .69f, .57f, 1.f)
#define ztColor_Khaki_X11_LightKhaki zt_color(.94f, .90f, .55f, 1.f)
#define ztColor_LightBrown zt_color(.71f, .40f, .11f, 1.f)
#define ztColor_LightFrenchBeige zt_color(.78f, .68f, .50f, 1.f)
#define ztColor_LightKhaki zt_color(.94f, .90f, .55f, 1.f)
#define ztColor_Liver zt_color(.40f, .30f, .28f, 1.f)
#define ztColor_Liver_Dogs zt_color(.72f, .43f, .16f, 1.f)
#define ztColor_Liver_Organ zt_color(.42f, .18f, .12f, 1.f)
#define ztColor_LiverChestnut zt_color(.60f, .45f, .34f, 1.f)
#define ztColor_KenyanCopper zt_color(.49f, .11f, .02f, 1.f)
#define ztColor_Kobe zt_color(.53f, .18f, .09f, 1.f)
#define ztColor_Kobicha zt_color(.42f, .27f, .14f, 1.f)
#define ztColor_MeatBrown zt_color(.90f, .72f, .23f, 1.f)
#define ztColor_MetallicSunburst zt_color(.61f, .49f, .22f, 1.f)
#define ztColor_MistyMoss zt_color(.73f, .71f, .47f, 1.f)
#define ztColor_ModeBeige zt_color(.59f, .44f, .09f, 1.f)
#define ztColor_Ochre zt_color(.80f, .47f, .13f, 1.f)
#define ztColor_OtterBrown zt_color(.40f, .26f, .13f, 1.f)
#define ztColor_PaleBrown zt_color(.60f, .46f, .33f, 1.f)
#define ztColor_PaleCopper zt_color(.85f, .54f, .40f, 1.f)
#define ztColor_PastelBrown zt_color(.51f, .41f, .33f, 1.f)
#define ztColor_Peru zt_color(.80f, .52f, .25f, 1.f)
#define ztColor_Pineapple zt_color(.34f, .24f, .05f, 1.f)
#define ztColor_Prune zt_color(.44f, .11f, .11f, 1.f)
#define ztColor_PullmanBrown_UPSBrown zt_color(.39f, .25f, .09f, 1.f)
#define ztColor_RawSienna zt_color(.84f, .54f, .35f, 1.f)
#define ztColor_RawUmber zt_color(.51f, .40f, .27f, 1.f)
#define ztColor_RoastCoffee zt_color(.44f, .26f, .25f, 1.f)
#define ztColor_RoseEbony zt_color(.40f, .28f, .27f, 1.f)
#define ztColor_RosyBrown zt_color(.74f, .56f, .56f, 1.f)
#define ztColor_RuddyBrown zt_color(.73f, .40f, .16f, 1.f)
#define ztColor_Rufous zt_color(.66f, .11f, .03f, 1.f)
#define ztColor_Russet zt_color(.50f, .27f, .11f, 1.f)
#define ztColor_SaddleBrown zt_color(.55f, .27f, .07f, 1.f)
#define ztColor_Sand zt_color(.76f, .70f, .50f, 1.f)
#define ztColor_SandDune zt_color(.59f, .44f, .09f, 1.f)
#define ztColor_Sandstorm zt_color(.93f, .84f, .25f, 1.f)
#define ztColor_SandyBrown zt_color(.96f, .64f, .38f, 1.f)
#define ztColor_SandyTan zt_color(.99f, .85f, .71f, 1.f)
#define ztColor_SandyTaupe zt_color(.59f, .44f, .09f, 1.f)
#define ztColor_SealBrown zt_color(.20f, .08f, .08f, 1.f)
#define ztColor_Sepia zt_color(.44f, .26f, .08f, 1.f)
#define ztColor_Sienna zt_color(.53f, .18f, .09f, 1.f)
#define ztColor_SilverSand zt_color(.75f, .76f, .76f, 1.f)
#define ztColor_Sinopia zt_color(.80f, .25f, .04f, 1.f)
#define ztColor_SpicyMix zt_color(.55f, .37f, .30f, 1.f)
#define ztColor_SweetBrown zt_color(.66f, .22f, .19f, 1.f)
#define ztColor_Tan zt_color(.82f, .71f, .55f, 1.f)
#define ztColor_Tumbleweed zt_color(.87f, .67f, .53f, 1.f)
#define ztColor_Tuscan zt_color(.98f, .84f, .65f, 1.f)
#define ztColor_TuscanBrown zt_color(.44f, .31f, .22f, 1.f)
#define ztColor_TuscanTan zt_color(.65f, .48f, .36f, 1.f)
#define ztColor_Tuscany zt_color(.75f, .60f, .60f, 1.f)
#define ztColor_Umber zt_color(.39f, .32f, .28f, 1.f)
#define ztColor_VanDykeBrown zt_color(.40f, .26f, .16f, 1.f)
#define ztColor_Wenge zt_color(.39f, .33f, .32f, 1.f)
#define ztColor_Wheat zt_color(.96f, .87f, .70f, 1.f)
#define ztColor_WindsorTan zt_color(.65f, .33f, .01f, 1.f)
#define ztColor_WineDregs zt_color(.40f, .19f, .28f, 1.f)
#define ztColor_WoodBrown zt_color(.76f, .60f, .42f, 1.f)
#define ztColor_ZinnwalditeBrown zt_color(.17f, .09f, .03f, 1.f)
// ================================================================================================
// Oranges
#define ztColor_AlloyOrange zt_color(.77f, .38f, .06f, 1.f)
#define ztColor_Apricot zt_color(.98f, .81f, .69f, 1.f)
#define ztColor_AtomicTangerine zt_color(1.0f, .60f, .40f, 1.f)
#define ztColor_Bittersweet zt_color(1.0f, .44f, .37f, 1.f)
#define ztColor_BigFootFeet zt_color(.91f, .56f, .35f, 1.f)
#define ztColor_BurntOrange zt_color(.80f, .33f, .0f, 1.f)
#define ztColor_CadmiumOrange zt_color(.93f, .53f, .18f, 1.f)
#define ztColor_CarrotOrange zt_color(.93f, .57f, .13f, 1.f)
#define ztColor_Champagne zt_color(.97f, .91f, .81f, 1.f)
#define ztColor_Coral zt_color(1.0f, .50f, .31f, 1.f)
#define ztColor_DarkOrange zt_color(1.0f, .55f, .0f, 1.f)
#define ztColor_DarkSalmon zt_color(.91f, .59f, .48f, 1.f)
#define ztColor_DarkTangerine zt_color(1.0f, .66f, .07f, 1.f)
#define ztColor_DeepCarrotOrange zt_color(.91f, .41f, .17f, 1.f)
#define ztColor_DeepPeach zt_color(1.0f, .80f, .64f, 1.f)
#define ztColor_DeepSaffron zt_color(1.0f, .60f, .20f, 1.f)
#define ztColor_FluorescentOrange zt_color(1.0f, .75f, .0f, 1.f)
#define ztColor_Gamboge zt_color(.89f, .61f, .06f, 1.f)
#define ztColor_GambogeOrange_Brown zt_color(.60f, .40f, .0f, 1.f)
#define ztColor_GiantsOrange zt_color(1.0f, .35f, .11f, 1.f)
#define ztColor_Gold_Metallic zt_color(.83f, .69f, .22f, 1.f)
#define ztColor_HeatWave zt_color(1.0f, .48f, .0f, 1.f)
#define ztColor_InternationalOrange_Aerospace zt_color(1.0f, .31f, .0f, 1.f)
#define ztColor_InternationalOrange_Engineering zt_color(.73f, .09f, .05f, 1.f)
#define ztColor_InternationalOrange_GoldenGateBridge zt_color(.75f, .21f, .17f, 1.f)
#define ztColor_Mandarin zt_color(.95f, .48f, .28f, 1.f)
#define ztColor_Marigold zt_color(.92f, .64f, .13f, 1.f)
#define ztColor_MangoTango zt_color(1.0f, .51f, .26f, 1.f)
#define ztColor_MellowApricot zt_color(.97f, .72f, .47f, 1.f)
#define ztColor_NeonCarrot zt_color(1.0f, .64f, .26f, 1.f)
#define ztColor_OldGold zt_color(.81f, .71f, .23f, 1.f)
#define ztColor_Orange_ColorWheel zt_color(1.0f, .50f, .0f, 1.f)
#define ztColor_Orange_Crayola zt_color(1.0f, .46f, .22f, 1.f)
#define ztColor_Orange_Pantone zt_color(1.0f, .35f, .0f, 1.f)
#define ztColor_Orange_RYB zt_color(.98f, .60f, .01f, 1.f)
#define ztColor_Orange_Web zt_color(1.0f, .65f, .0f, 1.f)
#define ztColor_OrangePeel zt_color(1.0f, .62f, .0f, 1.f)
#define ztColor_OrangeRed zt_color(1.0f, .27f, .0f, 1.f)
#define ztColor_OrangeSoda zt_color(.98f, .36f, .24f, 1.f)
#define ztColor_OrangeYellow zt_color(.97f, .84f, .41f, 1.f)
#define ztColor_OriolesOrange zt_color(.98f, .31f, .08f, 1.f)
#define ztColor_OutrageousOrange zt_color(1.0f, .43f, .29f, 1.f)
#define ztColor_PastelOrange zt_color(1.0f, .70f, .28f, 1.f)
#define ztColor_PeachOrange zt_color(1.0f, .80f, .60f, 1.f)
#define ztColor_PeachPuff zt_color(1.0f, .85f, .73f, 1.f)
#define ztColor_PersianOrange zt_color(.85f, .56f, .35f, 1.f)
#define ztColor_Persimmon zt_color(.93f, .35f, .0f, 1.f)
#define ztColor_PortlandOrange zt_color(1.0f, .35f, .21f, 1.f)
#define ztColor_PrincetonOrange zt_color(.96f, .50f, .15f, 1.f)
#define ztColor_Pumpkin zt_color(1.0f, .46f, .09f, 1.f)
#define ztColor_Rajah zt_color(.98f, .67f, .38f, 1.f)
#define ztColor_SafetyOrange zt_color(1.0f, .47f, .0f, 1.f)
#define ztColor_SafetyOrange_BlazeOrange zt_color(1.0f, .40f, .0f, 1.f)
#define ztColor_SatinSheenGold zt_color(.80f, .63f, .21f, 1.f)
#define ztColor_SmashedPumpkin zt_color(1.0f, .43f, .23f, 1.f)
#define ztColor_SpanishOrange zt_color(.91f, .38f, .0f, 1.f)
#define ztColor_Sunset zt_color(.98f, .84f, .65f, 1.f)
#define ztColor_SunsetOrange zt_color(.99f, .37f, .33f, 1.f)
#define ztColor_Tangelo zt_color(.98f, .30f, .0f, 1.f)
#define ztColor_Tangerine zt_color(.95f, .52f, .0f, 1.f)
#define ztColor_TangerineYellow zt_color(1.0f, .80f, .0f, 1.f)
#define ztColor_TartOrange zt_color(.98f, .30f, .27f, 1.f)
#define ztColor_TeaRose zt_color(.97f, .51f, .47f, 1.f)
#define ztColor_TenneTawny zt_color(.80f, .34f, .0f, 1.f)
#define ztColor_TigersEye zt_color(.88f, .55f, .24f, 1.f)
#define ztColor_Tomato zt_color(1.0f, .39f, .28f, 1.f)
#define ztColor_Topaz zt_color(1.0f, .78f, .49f, 1.f)
#define ztColor_UniversityOfTennesseeOrange zt_color(.97f, .50f, .0f, 1.f)
#define ztColor_Urobilin zt_color(.88f, .68f, .13f, 1.f)
#define ztColor_VeryLightTangelo zt_color(1.0f, .69f, .47f, 1.f)
#define ztColor_VeryPaleOrange zt_color(1.0f, .87f, .75f, 1.f)
#define ztColor_VividOrange zt_color(1.0f, .37f, .0f, 1.f)
#define ztColor_VividAmber zt_color(.80f, .60f, .0f, 1.f)
#define ztColor_VividGamboge zt_color(1.0f, .60f, .0f, 1.f)
#define ztColor_VividOrangePeel zt_color(1.0f, .63f, .0f, 1.f)
#define ztColor_VividTangelo zt_color(.94f, .45f, .15f, 1.f)
#define ztColor_WillpowerOrange zt_color(.99f, .35f, .0f, 1.f)
// ================================================================================================
// Yellows
#define ztColor_ArylideYellow zt_color(.91f, .84f, .42f, 1.f)
#define ztColor_Aureolin zt_color(.99f, .93f, .0f, 1.f)
#define ztColor_AztecGold zt_color(.76f, .60f, .33f, 1.f)
#define ztColor_BananaMania zt_color(.98f, .91f, .71f, 1.f)
#define ztColor_BananaYellow zt_color(1.0f, .88f, .21f, 1.f)
#define ztColor_BitterLemon zt_color(.79f, .88f, .05f, 1.f)
#define ztColor_BoogerBuster zt_color(.87f, .89f, .42f, 1.f)
#define ztColor_Brass zt_color(.71f, .65f, .26f, 1.f)
#define ztColor_BrightYellow_Crayola zt_color(1.0f, .67f, .11f, 1.f)
#define ztColor_BronzeYellow zt_color(.45f, .44f, .0f, 1.f)
#define ztColor_CadmiumYellow zt_color(1.0f, .96f, .0f, 1.f)
#define ztColor_Canary zt_color(1.0f, 1.0f, .60f, 1.f)
#define ztColor_CanaryYellow zt_color(1.0f, .94f, .0f, 1.f)
#define ztColor_ChromeYellow zt_color(1.0f, .65f, .0f, 1.f)
#define ztColor_Corn zt_color(.98f, .93f, .36f, 1.f)
#define ztColor_CyberYellow zt_color(1.0f, .83f, .0f, 1.f)
#define ztColor_Daffodil zt_color(1.0f, 1.0f, .19f, 1.f)
#define ztColor_Dandelion zt_color(.94f, .88f, .19f, 1.f)
#define ztColor_DarkGoldenrod zt_color(.72f, .53f, .04f, 1.f)
#define ztColor_DeepLemon zt_color(.96f, .78f, .10f, 1.f)
#define ztColor_EarthYellow zt_color(.88f, .66f, .37f, 1.f)
#define ztColor_ElectricYellow zt_color(1.0f, 1.0f, .20f, 1.f)
#define ztColor_Flavescent zt_color(.97f, .91f, .56f, 1.f)
#define ztColor_Flax zt_color(.93f, .86f, .51f, 1.f)
#define ztColor_FluorescentYellow zt_color(.80f, 1.0f, .0f, 1.f)
#define ztColor_GargoyleGas zt_color(1.0f, .87f, .27f, 1.f)
#define ztColor_GoldenPoppy zt_color(.99f, .76f, .0f, 1.f)
#define ztColor_Goldenrod zt_color(.85f, .65f, .13f, 1.f)
#define ztColor_GoldenYellow zt_color(1.0f, .87f, .0f, 1.f)
#define ztColor_Gold_Web_Golden zt_color(1.0f, .84f, .0f, 1.f)
#define ztColor_HansaYellow zt_color(.91f, .84f, .42f, 1.f)
#define ztColor_HarvestGold zt_color(.85f, .57f, .0f, 1.f)
#define ztColor_Icterine zt_color(.99f, .97f, .37f, 1.f)
#define ztColor_IndianYellow zt_color(.89f, .66f, .34f, 1.f)
#define ztColor_Jasmine zt_color(.97f, .87f, .49f, 1.f)
#define ztColor_Jonquil zt_color(.96f, .79f, .09f, 1.f)
#define ztColor_KeyLime zt_color(.91f, .96f, .55f, 1.f)
#define ztColor_LaserLemon zt_color(1.0f, 1.0f, .40f, 1.f)
#define ztColor_Lemon zt_color(1.0f, .97f, .0f, 1.f)
#define ztColor_LemonCurry zt_color(.80f, .63f, .11f, 1.f)
#define ztColor_LemonGlacier zt_color(.99f, 1.0f, .0f, 1.f)
#define ztColor_LemonLime zt_color(.89f, 1.0f, .0f, 1.f)
#define ztColor_LemonMeringue zt_color(.96f, .92f, .75f, 1.f)
#define ztColor_LemonYellow zt_color(1.0f, .96f, .31f, 1.f)
#define ztColor_LightGoldenrodYellow zt_color(.98f, .98f, .82f, 1.f)
#define ztColor_LightYellow zt_color(1.0f, 1.0f, .88f, 1.f)
#define ztColor_MacaroniAndCheese zt_color(1.0f, .74f, .53f, 1.f)
#define ztColor_Maize zt_color(.98f, .93f, .36f, 1.f)
#define ztColor_MaximumYellow zt_color(.98f, .98f, .22f, 1.f)
#define ztColor_MaximumYellowRed zt_color(.95f, .73f, .29f, 1.f)
#define ztColor_MellowYellow zt_color(.97f, .87f, .49f, 1.f)
#define ztColor_MiddleYellow zt_color(1.0f, .92f, .0f, 1.f)
#define ztColor_MiddleYellowRed zt_color(.65f, .23f, .47f, 1.f)
#define ztColor_MikadoYellow zt_color(1.0f, .77f, .05f, 1.f)
#define ztColor_Mindaro zt_color(.89f, .98f, .53f, 1.f)
#define ztColor_MinionYellow zt_color(.96f, .86f, .31f, 1.f)
#define ztColor_Mustard zt_color(1.0f, .86f, .35f, 1.f)
#define ztColor_NaplesYellow zt_color(.98f, .85f, .37f, 1.f)
#define ztColor_Olive zt_color(.50f, .50f, .0f, 1.f)
#define ztColor_PaleGold zt_color(.90f, .75f, .54f, 1.f)
#define ztColor_PaleGoldenrod zt_color(.93f, .91f, .67f, 1.f)
#define ztColor_PaleSpringBud zt_color(.93f, .92f, .74f, 1.f)
#define ztColor_PastelYellow zt_color(.99f, .99f, .59f, 1.f)
#define ztColor_PeachYellow zt_color(.98f, .87f, .68f, 1.f)
#define ztColor_Peridot zt_color(.90f, .89f, .0f, 1.f)
#define ztColor_RoyalYellow zt_color(.98f, .85f, .37f, 1.f)
#define ztColor_SafetyYellow zt_color(.93f, .82f, .01f, 1.f)
#define ztColor_Saffron zt_color(.96f, .77f, .19f, 1.f)
#define ztColor_SchoolBusYellow zt_color(1.0f, .85f, .0f, 1.f)
#define ztColor_SelectiveYellow zt_color(1.0f, .73f, .0f, 1.f)
#define ztColor_SizzlingSunrise zt_color(1.0f, .86f, .0f, 1.f)
#define ztColor_StilDeGrainYellow zt_color(.98f, .85f, .37f, 1.f)
#define ztColor_Straw zt_color(.89f, .85f, .44f, 1.f)
#define ztColor_Sunglow zt_color(1.0f, .80f, .20f, 1.f)
#define ztColor_Sunny zt_color(.95f, .95f, .48f, 1.f)
#define ztColor_Sunray zt_color(.89f, .67f, .34f, 1.f)
#define ztColor_TitaniumYellow zt_color(.93f, .90f, .0f, 1.f)
#define ztColor_UCLAGold zt_color(1.0f, .70f, .0f, 1.f)
#define ztColor_UniversityOfCaliforniaGold zt_color(.72f, .53f, .15f, 1.f)
#define ztColor_UnmellowYellow zt_color(1.0f, 1.0f, .40f, 1.f)
#define ztColor_USCGold zt_color(1.0f, .80f, .0f, 1.f)
#define ztColor_VegasGold zt_color(.77f, .70f, .35f, 1.f)
#define ztColor_VeryPaleYellow zt_color(1.0f, 1.0f, .75f, 1.f)
#define ztColor_VividYellow zt_color(1.0f, .89f, .01f, 1.f)
#define ztColor_Yellow_Crayola zt_color(.99f, .91f, .51f, 1.f)
#define ztColor_Yellow_Munsell zt_color(.94f, .80f, .0f, 1.f)
#define ztColor_Yellow_NCS zt_color(1.0f, .83f, .0f, 1.f)
#define ztColor_Yellow_Pantone zt_color(1.0f, .87f, .0f, 1.f)
#define ztColor_Yellow_Process zt_color(1.0f, .94f, .0f, 1.f)
#define ztColor_Yellow_RYB zt_color(1.0f, 1.0f, .20f, 1.f)
#define ztColor_YellowGreen zt_color(.60f, .80f, .20f, 1.f)
#define ztColor_YellowOrange zt_color(1.0f, .68f, .26f, 1.f)
#define ztColor_YellowRose zt_color(1.0f, .94f, .0f, 1.f)
#define ztColor_YellowSunshine zt_color(1.0f, .97f, .0f, 1.f)
// ================================================================================================
// Greens
#define ztColor_AcidGreen zt_color(.69f, .75f, .10f, 1.f)
#define ztColor_AlienArmpit zt_color(.52f, .87f, .01f, 1.f)
#define ztColor_Amazon zt_color(.23f, .48f, .34f, 1.f)
#define ztColor_AndroidGreen zt_color(.64f, .78f, .22f, 1.f)
#define ztColor_Ao_English zt_color( .0f, .50f, .0f, 1.f)
#define ztColor_AppleGreen zt_color(.55f, .71f, .0f, 1.f)
#define ztColor_ArcticLime zt_color(.82f, 1.0f, .08f, 1.f)
#define ztColor_Artichoke zt_color(.56f, .59f, .47f, 1.f)
#define ztColor_ArmyGreen zt_color(.29f, .33f, .13f, 1.f)
#define ztColor_Asparagus zt_color(.53f, .66f, .42f, 1.f)
#define ztColor_Avocado zt_color(.34f, .51f, .01f, 1.f)
#define ztColor_BangladeshGreen zt_color( .0f, .42f, .31f, 1.f)
#define ztColor_BitterLime zt_color(.75f, 1.0f, .0f, 1.f)
#define ztColor_BottleGreen zt_color( .0f, .42f, .31f, 1.f)
#define ztColor_BrightGreen zt_color(.40f, 1.0f, .0f, 1.f)
#define ztColor_BritishRacingGreen zt_color( .0f, .26f, .15f, 1.f)
#define ztColor_BrunswickGreen zt_color(.11f, .30f, .24f, 1.f)
#define ztColor_BudGreen zt_color(.48f, .71f, .38f, 1.f)
#define ztColor_CadmiumGreen zt_color( .0f, .42f, .24f, 1.f)
#define ztColor_CamouflageGreen zt_color(.47f, .53f, .42f, 1.f)
#define ztColor_CalPolyPomonaGreen zt_color(.12f, .30f, .17f, 1.f)
#define ztColor_CaribbeanGreen zt_color( .0f, .80f, .60f, 1.f)
#define ztColor_CastletonGreen zt_color( .0f, .34f, .25f, 1.f)
#define ztColor_Celadon zt_color(.67f, .88f, .69f, 1.f)
#define ztColor_CeladonGreen zt_color(.18f, .52f, .49f, 1.f)
#define ztColor_CharlestonGreen zt_color(.14f, .17f, .17f, 1.f)
#define ztColor_Chartreuse_Traditional zt_color(.87f, 1.0f, .0f, 1.f)
#define ztColor_Chartreuse_Web zt_color(.50f, 1.0f, .0f, 1.f)
#define ztColor_ChlorophyllGreen zt_color(.29f, 1.0f, .0f, 1.f)
#define ztColor_Citron zt_color(.62f, .66f, .12f, 1.f)
#define ztColor_DarkGreen zt_color( .0f, .20f, .13f, 1.f)
#define ztColor_DarkGreen_X11 zt_color( .0f, .39f, .0f, 1.f)
#define ztColor_DarkJungleGreen zt_color(.10f, .14f, .13f, 1.f)
#define ztColor_DarkMossGreen zt_color(.29f, .36f, .14f, 1.f)
#define ztColor_DarkOliveGreen zt_color(.33f, .42f, .18f, 1.f)
#define ztColor_DarkPastelGreen zt_color(.01f, .75f, .24f, 1.f)
#define ztColor_DarkSeaGreen zt_color(.56f, .74f, .56f, 1.f)
#define ztColor_DarkSpringGreen zt_color(.09f, .45f, .27f, 1.f)
#define ztColor_DartmouthGreen zt_color( .0f, .44f, .24f, 1.f)
#define ztColor_DeepGreen zt_color(.02f, .40f, .03f, 1.f)
#define ztColor_DeepGreenCyanTurquoise zt_color(.05f, .49f, .38f, 1.f)
#define ztColor_DeepJungleGreen zt_color( .0f, .29f, .29f, 1.f)
#define ztColor_DeepMossGreen zt_color(.21f, .37f, .23f, 1.f)
#define ztColor_DeepSpringBud zt_color(.33f, .42f, .18f, 1.f)
#define ztColor_DollarBill zt_color(.52f, .73f, .40f, 1.f)
#define ztColor_ElectricGreen zt_color( .0f, 1.0f, .0f, 1.f)
#define ztColor_ElectricLime zt_color(.80f, 1.0f, .0f, 1.f)
#define ztColor_Emerald zt_color(.31f, .78f, .47f, 1.f)
#define ztColor_EnglishGreen zt_color(.11f, .30f, .24f, 1.f)
#define ztColor_Feldgrau zt_color(.30f, .36f, .33f, 1.f)
#define ztColor_FernGreen zt_color(.31f, .47f, .26f, 1.f)
#define ztColor_ForestGreen_Traditional zt_color( .0f, .27f, .13f, 1.f)
#define ztColor_ForestGreen_Web zt_color(.13f, .55f, .13f, 1.f)
#define ztColor_FrenchLime zt_color(.62f, .99f, .22f, 1.f)
#define ztColor_GenericViridian zt_color( .0f, .50f, .40f, 1.f)
#define ztColor_GOGreen zt_color( .0f, .67f, .40f, 1.f)
#define ztColor_GrannySmithApple zt_color(.66f, .89f, .63f, 1.f)
#define ztColor_Green_ColorWheel_X11Green zt_color( .0f, 1.0f, .0f, 1.f)
#define ztColor_Green_Crayola zt_color(.11f, .67f, .47f, 1.f)
#define ztColor_Green_HTML_CSSColor zt_color( .0f, .50f, .0f, 1.f)
#define ztColor_Green_Munsell zt_color( .0f, .66f, .47f, 1.f)
#define ztColor_Green_NCS zt_color( .0f, .62f, .42f, 1.f)
#define ztColor_Green_Pantone zt_color( .0f, .68f, .26f, 1.f)
#define ztColor_Green_Pigment zt_color( .0f, .65f, .31f, 1.f)
#define ztColor_Green_RYB zt_color(.40f, .69f, .20f, 1.f)
#define ztColor_GreenBlue zt_color(.07f, .39f, .71f, 1.f)
#define ztColor_GreenCyan zt_color( .0f, .60f, .40f, 1.f)
#define ztColor_GreenLizard zt_color(.65f, .96f, .20f, 1.f)
#define ztColor_GreenSheen zt_color(.43f, .68f, .63f, 1.f)
#define ztColor_GreenYellow zt_color(.68f, 1.0f, .18f, 1.f)
#define ztColor_GuppieGreen zt_color( .0f, 1.0f, .50f, 1.f)
#define ztColor_Harlequin zt_color(.25f, 1.0f, .0f, 1.f)
#define ztColor_HarlequinGreen zt_color(.27f, .80f, .09f, 1.f)
#define ztColor_HookersGreen zt_color(.29f, .47f, .42f, 1.f)
#define ztColor_HunterGreen zt_color(.21f, .37f, .23f, 1.f)
#define ztColor_IguanaGreen zt_color(.44f, .74f, .47f, 1.f)
#define ztColor_IlluminatingEmerald zt_color(.19f, .57f, .47f, 1.f)
#define ztColor_Inchworm zt_color(.70f, .93f, .36f, 1.f)
#define ztColor_IndiaGreen zt_color(.07f, .53f, .03f, 1.f)
#define ztColor_IslamicGreen zt_color( .0f, .56f, .0f, 1.f)
#define ztColor_Jade zt_color( .0f, .66f, .42f, 1.f)
#define ztColor_JuneBud zt_color(.74f, .85f, .34f, 1.f)
#define ztColor_JungleGreen zt_color(.16f, .67f, .53f, 1.f)
#define ztColor_KellyGreen zt_color(.30f, .73f, .09f, 1.f)
#define ztColor_Kiwi zt_color(.56f, .90f, .25f, 1.f)
#define ztColor_KombuGreen zt_color(.21f, .26f, .19f, 1.f)
#define ztColor_LaSalleGreen zt_color(.03f, .47f, .19f, 1.f)
#define ztColor_LaurelGreen zt_color(.66f, .73f, .62f, 1.f)
#define ztColor_LawnGreen zt_color(.49f, .99f, .0f, 1.f)
#define ztColor_LightGreen zt_color(.56f, .93f, .56f, 1.f)
#define ztColor_LightMossGreen zt_color(.68f, .87f, .68f, 1.f)
#define ztColor_Limerick zt_color(.62f, .76f, .04f, 1.f)
#define ztColor_LimeGreen zt_color(.20f, .80f, .20f, 1.f)
#define ztColor_Lime_ColorWheel zt_color(.75f, 1.0f, .0f, 1.f)
#define ztColor_Lime_Web_X11Green zt_color( .0f, 1.0f, .0f, 1.f)
#define ztColor_LincolnGreen zt_color(.10f, .35f, .02f, 1.f)
#define ztColor_Mantis zt_color(.45f, .76f, .40f, 1.f)
#define ztColor_Malachite zt_color(.04f, .85f, .32f, 1.f)
#define ztColor_MaximumGreen zt_color(.37f, .55f, .19f, 1.f)
#define ztColor_MaximumGreenYellow zt_color(.85f, .90f, .31f, 1.f)
#define ztColor_MayGreen zt_color(.30f, .57f, .25f, 1.f)
#define ztColor_MediumJungleGreen zt_color(.11f, .21f, .18f, 1.f)
#define ztColor_MediumSpringBud zt_color(.79f, .86f, .53f, 1.f)
#define ztColor_MediumSpringGreen zt_color( .0f, .98f, .60f, 1.f)
#define ztColor_MiddleGreen zt_color(.30f, .55f, .34f, 1.f)
#define ztColor_MiddleGreenYellow zt_color(.67f, .75f, .38f, 1.f)
#define ztColor_MidnightGreen_EagleGreen zt_color( .0f, .29f, .33f, 1.f)
#define ztColor_Mint zt_color(.24f, .71f, .54f, 1.f)
#define ztColor_MintGreen zt_color(.60f, 1.0f, .60f, 1.f)
#define ztColor_MossGreen zt_color(.54f, .60f, .36f, 1.f)
#define ztColor_MSUGreen zt_color(.09f, .27f, .23f, 1.f)
#define ztColor_MughalGreen zt_color(.19f, .38f, .19f, 1.f)
#define ztColor_MyrtleGreen zt_color(.19f, .47f, .45f, 1.f)
#define ztColor_NeonGreen zt_color(.22f, 1.0f, .08f, 1.f)
#define ztColor_NorthTexasGreen zt_color(.02f, .56f, .20f, 1.f)
#define ztColor_OceanGreen zt_color(.28f, .75f, .57f, 1.f)
#define ztColor_OfficeGreen zt_color( .0f, .50f, .0f, 1.f)
#define ztColor_OldMossGreen zt_color(.53f, .49f, .21f, 1.f)
#define ztColor_OliveDrab_3 zt_color(.42f, .56f, .14f, 1.f)
#define ztColor_OliveDrab_7 zt_color(.24f, .20f, .12f, 1.f)
#define ztColor_Olivine zt_color(.60f, .73f, .45f, 1.f)
#define ztColor_PakistanGreen zt_color( .0f, .40f, .0f, 1.f)
#define ztColor_PaleGreen zt_color(.60f, .98f, .60f, 1.f)
#define ztColor_PaoloVeroneseGreen zt_color( .0f, .61f, .49f, 1.f)
#define ztColor_ParisGreen zt_color(.31f, .78f, .47f, 1.f)
#define ztColor_PastelGreen zt_color(.47f, .87f, .47f, 1.f)
#define ztColor_Pear zt_color(.82f, .89f, .19f, 1.f)
#define ztColor_PersianGreen zt_color( .0f, .65f, .58f, 1.f)
#define ztColor_PhthaloGreen zt_color(.07f, .21f, .14f, 1.f)
#define ztColor_PineGreen zt_color( .0f, .47f, .44f, 1.f)
#define ztColor_Pistachio zt_color(.58f, .77f, .45f, 1.f)
#define ztColor_PullmanGreen zt_color(.23f, .20f, .11f, 1.f)
#define ztColor_RifleGreen zt_color(.27f, .30f, .22f, 1.f)
#define ztColor_RussianGreen zt_color(.40f, .57f, .40f, 1.f)
#define ztColor_SacramentoStateGreen zt_color( .0f, .34f, .25f, 1.f)
#define ztColor_Sage zt_color(.74f, .72f, .54f, 1.f)
#define ztColor_SapGreen zt_color(.31f, .49f, .16f, 1.f)
#define ztColor_ScreaminGreen zt_color(.40f, 1.0f, .40f, 1.f)
#define ztColor_SeaFoamGreen zt_color(.76f, .89f, .75f, 1.f)
#define ztColor_SeaGreen zt_color(.18f, .55f, .34f, 1.f)
#define ztColor_ShamrockGreen zt_color( .0f, .62f, .38f, 1.f)
#define ztColor_SheenGreen zt_color(.56f, .83f, .0f, 1.f)
#define ztColor_ShinyShamrock zt_color(.37f, .65f, .47f, 1.f)
#define ztColor_SlimyGreen zt_color(.16f, .59f, .09f, 1.f)
#define ztColor_SpanishBistre zt_color(.50f, .46f, .20f, 1.f)