1#![allow(non_upper_case_globals)]
2
3use fltk::enums::Color;
4
5pub const IndianRed: Color = Color::from_rgb(205, 92, 92);
6pub const LightCoral: Color = Color::from_rgb(240, 128, 128);
7pub const Salmon: Color = Color::from_rgb(250, 128, 114);
8pub const DarkSalmon: Color = Color::from_rgb(233, 150, 122);
9pub const LightSalmon: Color = Color::from_rgb(255, 160, 122);
10pub const Crimson: Color = Color::from_rgb(220, 20, 60);
11pub const Red: Color = Color::from_rgb(255, 0, 0);
12pub const FireBrick: Color = Color::from_rgb(178, 34, 34);
13pub const DarkRed: Color = Color::from_rgb(139, 0, 0);
14pub const Pink: Color = Color::from_rgb(255, 192, 203);
15pub const LightPink: Color = Color::from_rgb(255, 182, 193);
16pub const HotPink: Color = Color::from_rgb(255, 105, 180);
17pub const DeepPink: Color = Color::from_rgb(255, 20, 147);
18pub const MediumVioletRed: Color = Color::from_rgb(199, 21, 133);
19pub const PaleVioletRed: Color = Color::from_rgb(219, 112, 147);
20pub const Coral: Color = Color::from_rgb(255, 127, 80);
21pub const Tomato: Color = Color::from_rgb(255, 99, 71);
22pub const OrangeRed: Color = Color::from_rgb(255, 69, 0);
23pub const DarkOrange: Color = Color::from_rgb(255, 140, 0);
24pub const Orange: Color = Color::from_rgb(255, 165, 0);
25pub const Gold: Color = Color::from_rgb(255, 215, 0);
26pub const Yellow: Color = Color::from_rgb(255, 255, 0);
27pub const LightYellow: Color = Color::from_rgb(255, 255, 224);
28pub const LemonChiffon: Color = Color::from_rgb(255, 250, 205);
29pub const LightGoldenrodYellow: Color = Color::from_rgb(250, 250, 210);
30pub const PapayaWhip: Color = Color::from_rgb(255, 239, 213);
31pub const Moccasin: Color = Color::from_rgb(255, 228, 181);
32pub const PeachPuff: Color = Color::from_rgb(255, 218, 185);
33pub const PaleGoldenrod: Color = Color::from_rgb(238, 232, 170);
34pub const Khaki: Color = Color::from_rgb(240, 230, 140);
35pub const DarkKhaki: Color = Color::from_rgb(189, 183, 107);
36pub const Lavender: Color = Color::from_rgb(230, 230, 250);
37pub const Thistle: Color = Color::from_rgb(216, 191, 216);
38pub const Plum: Color = Color::from_rgb(221, 160, 221);
39pub const Violet: Color = Color::from_rgb(238, 130, 238);
40pub const Orchid: Color = Color::from_rgb(218, 112, 214);
41pub const Fuchsia: Color = Color::from_rgb(255, 0, 255);
42pub const Magenta: Color = Color::from_rgb(255, 0, 255);
43pub const MediumOrchid: Color = Color::from_rgb(186, 85, 211);
44pub const MediumPurple: Color = Color::from_rgb(147, 112, 219);
45pub const RebeccaPurple: Color = Color::from_rgb(102, 51, 153);
46pub const BlueViolet: Color = Color::from_rgb(138, 43, 226);
47pub const DarkViolet: Color = Color::from_rgb(148, 0, 211);
48pub const DarkOrchid: Color = Color::from_rgb(153, 50, 204);
49pub const DarkMagenta: Color = Color::from_rgb(139, 0, 139);
50pub const Purple: Color = Color::from_rgb(128, 0, 128);
51pub const Indigo: Color = Color::from_rgb(75, 0, 130);
52pub const SlateBlue: Color = Color::from_rgb(106, 90, 205);
53pub const DarkSlateBlue: Color = Color::from_rgb(72, 61, 139);
54pub const MediumSlateBlue: Color = Color::from_rgb(123, 104, 238);
55pub const GreenYellow: Color = Color::from_rgb(173, 255, 47);
56pub const Chartreuse: Color = Color::from_rgb(127, 255, 0);
57pub const LawnGreen: Color = Color::from_rgb(124, 252, 0);
58pub const Lime: Color = Color::from_rgb(0, 255, 0);
59pub const LimeGreen: Color = Color::from_rgb(50, 205, 50);
60pub const PaleGreen: Color = Color::from_rgb(152, 251, 152);
61pub const LightGreen: Color = Color::from_rgb(144, 238, 144);
62pub const MediumSpringGreen: Color = Color::from_rgb(0, 250, 154);
63pub const SpringGreen: Color = Color::from_rgb(0, 255, 127);
64pub const MediumSeaGreen: Color = Color::from_rgb(60, 179, 113);
65pub const SeaGreen: Color = Color::from_rgb(46, 139, 87);
66pub const ForestGreen: Color = Color::from_rgb(34, 139, 34);
67pub const Green: Color = Color::from_rgb(0, 128, 0);
68pub const DarkGreen: Color = Color::from_rgb(0, 100, 0);
69pub const YellowGreen: Color = Color::from_rgb(154, 205, 50);
70pub const OliveDrab: Color = Color::from_rgb(107, 142, 35);
71pub const Olive: Color = Color::from_rgb(128, 128, 0);
72pub const DarkOliveGreen: Color = Color::from_rgb(85, 107, 47);
73pub const MediumAquamarine: Color = Color::from_rgb(102, 205, 170);
74pub const DarkSeaGreen: Color = Color::from_rgb(143, 188, 139);
75pub const LightSeaGreen: Color = Color::from_rgb(32, 178, 170);
76pub const DarkCyan: Color = Color::from_rgb(0, 139, 139);
77pub const Teal: Color = Color::from_rgb(0, 128, 128);
78pub const Aqua: Color = Color::from_rgb(0, 255, 255);
79pub const Cyan: Color = Color::from_rgb(0, 255, 255);
80pub const LightCyan: Color = Color::from_rgb(224, 255, 255);
81pub const PaleTurquoise: Color = Color::from_rgb(175, 238, 238);
82pub const Aquamarine: Color = Color::from_rgb(127, 255, 212);
83pub const Turquoise: Color = Color::from_rgb(64, 224, 208);
84pub const MediumTurquoise: Color = Color::from_rgb(72, 209, 204);
85pub const DarkTurquoise: Color = Color::from_rgb(0, 206, 209);
86pub const CadetBlue: Color = Color::from_rgb(95, 158, 160);
87pub const SteelBlue: Color = Color::from_rgb(70, 130, 180);
88pub const LightSteelBlue: Color = Color::from_rgb(176, 196, 222);
89pub const PowderBlue: Color = Color::from_rgb(176, 224, 230);
90pub const LightBlue: Color = Color::from_rgb(173, 216, 230);
91pub const SkyBlue: Color = Color::from_rgb(135, 206, 235);
92pub const LightSkyBlue: Color = Color::from_rgb(135, 206, 250);
93pub const DeepSkyBlue: Color = Color::from_rgb(0, 191, 255);
94pub const DodgerBlue: Color = Color::from_rgb(30, 144, 255);
95pub const CornflowerBlue: Color = Color::from_rgb(100, 149, 237);
96pub const RoyalBlue: Color = Color::from_rgb(65, 105, 225);
97pub const Blue: Color = Color::from_rgb(0, 0, 255);
98pub const MediumBlue: Color = Color::from_rgb(0, 0, 205);
99pub const DarkBlue: Color = Color::from_rgb(0, 0, 139);
100pub const Navy: Color = Color::from_rgb(0, 0, 128);
101pub const MidnightBlue: Color = Color::from_rgb(25, 25, 112);
102pub const Cornsilk: Color = Color::from_rgb(255, 248, 220);
103pub const BlanchedAlmond: Color = Color::from_rgb(255, 235, 205);
104pub const Bisque: Color = Color::from_rgb(255, 228, 196);
105pub const NavajoWhite: Color = Color::from_rgb(255, 222, 173);
106pub const Wheat: Color = Color::from_rgb(245, 222, 179);
107pub const BurlyWood: Color = Color::from_rgb(222, 184, 135);
108pub const Tan: Color = Color::from_rgb(210, 180, 140);
109pub const RosyBrown: Color = Color::from_rgb(188, 143, 143);
110pub const SandyBrown: Color = Color::from_rgb(244, 164, 96);
111pub const Goldenrod: Color = Color::from_rgb(218, 165, 32);
112pub const DarkGoldenrod: Color = Color::from_rgb(184, 134, 11);
113pub const Peru: Color = Color::from_rgb(205, 133, 63);
114pub const Chocolate: Color = Color::from_rgb(210, 105, 30);
115pub const SaddleBrown: Color = Color::from_rgb(139, 69, 19);
116pub const Sienna: Color = Color::from_rgb(160, 82, 45);
117pub const Brown: Color = Color::from_rgb(165, 42, 42);
118pub const Maroon: Color = Color::from_rgb(128, 0, 0);
119pub const White: Color = Color::from_rgb(255, 255, 255);
120pub const Snow: Color = Color::from_rgb(255, 250, 250);
121pub const HoneyDew: Color = Color::from_rgb(240, 255, 240);
122pub const MintCream: Color = Color::from_rgb(245, 255, 250);
123pub const Azure: Color = Color::from_rgb(240, 255, 255);
124pub const AliceBlue: Color = Color::from_rgb(240, 248, 255);
125pub const GhostWhite: Color = Color::from_rgb(248, 248, 255);
126pub const WhiteSmoke: Color = Color::from_rgb(245, 245, 245);
127pub const SeaShell: Color = Color::from_rgb(255, 245, 238);
128pub const Beige: Color = Color::from_rgb(245, 245, 220);
129pub const OldLace: Color = Color::from_rgb(253, 245, 230);
130pub const FloralWhite: Color = Color::from_rgb(255, 250, 240);
131pub const Ivory: Color = Color::from_rgb(255, 255, 240);
132pub const AntiqueWhite: Color = Color::from_rgb(250, 235, 215);
133pub const Linen: Color = Color::from_rgb(250, 240, 230);
134pub const LavenderBlush: Color = Color::from_rgb(255, 240, 245);
135pub const MistyRose: Color = Color::from_rgb(255, 228, 225);
136pub const Gainsboro: Color = Color::from_rgb(220, 220, 220);
137pub const LightGray: Color = Color::from_rgb(211, 211, 211);
138pub const Silver: Color = Color::from_rgb(192, 192, 192);
139pub const DarkGray: Color = Color::from_rgb(169, 169, 169);
140pub const Gray: Color = Color::from_rgb(128, 128, 128);
141pub const DimGray: Color = Color::from_rgb(105, 105, 105);
142pub const LightSlateGray: Color = Color::from_rgb(119, 136, 153);
143pub const SlateGray: Color = Color::from_rgb(112, 128, 144);
144pub const DarkSlateGray: Color = Color::from_rgb(47, 79, 79);
145pub const Black: Color = Color::from_rgb(0, 0, 0);