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

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