< Summary

Information
Class: Allyaria.Theming.Constants.Colors
Assembly: Allyaria.Theming
File(s): /home/runner/work/allyaria/allyaria/src/Allyaria.Theming/Constants/Colors.cs
Line coverage
100%
Covered lines: 410
Uncovered lines: 0
Coverable lines: 410
Total lines: 1286
Line coverage: 100%
Branch coverage
100%
Covered branches: 4
Total branches: 4
Branch coverage: 100%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.cctor()100%11100%
BuildDictionary()100%44100%
Contains(...)100%11100%
TryGet(...)100%11100%

File(s)

/home/runner/work/allyaria/allyaria/src/Allyaria.Theming/Constants/Colors.cs

#LineLine coverage
 1using System.Collections.Immutable;
 2using System.Reflection;
 3
 4namespace Allyaria.Theming.Constants;
 5
 6/// <summary>
 7/// Provides a consolidated, alphabetically sorted library of named colors (CSS and Material), exposed as strongly-typed
 8/// <see cref="HexColor" /> properties.
 9/// </summary>
 10public static class Colors
 11{
 12    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Aliceblue" />: <c>#F0F8FFFF</c></summary>
 113    public static readonly HexColor Aliceblue = new(value: "#F0F8FFFF");
 14
 15    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Amber100" />: <c>#FFECB3FF</c></summary>
 116    public static readonly HexColor Amber100 = new(value: "#FFECB3FF");
 17
 18    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Amber200" />: <c>#FFE082FF</c></summary>
 119    public static readonly HexColor Amber200 = new(value: "#FFE082FF");
 20
 21    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Amber300" />: <c>#FFD54FFF</c></summary>
 122    public static readonly HexColor Amber300 = new(value: "#FFD54FFF");
 23
 24    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Amber400" />: <c>#FFCA28FF</c></summary>
 125    public static readonly HexColor Amber400 = new(value: "#FFCA28FF");
 26
 27    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Amber50" />: <c>#FFF8E1FF</c></summary>
 128    public static readonly HexColor Amber50 = new(value: "#FFF8E1FF");
 29
 30    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Amber500" />: <c>#FFC107FF</c></summary>
 131    public static readonly HexColor Amber500 = new(value: "#FFC107FF");
 32
 33    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Amber600" />: <c>#FFB300FF</c></summary>
 134    public static readonly HexColor Amber600 = new(value: "#FFB300FF");
 35
 36    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Amber700" />: <c>#FFA000FF</c></summary>
 137    public static readonly HexColor Amber700 = new(value: "#FFA000FF");
 38
 39    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Amber800" />: <c>#FF8F00FF</c></summary>
 140    public static readonly HexColor Amber800 = new(value: "#FF8F00FF");
 41
 42    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Amber900" />: <c>#FF6F00FF</c></summary>
 143    public static readonly HexColor Amber900 = new(value: "#FF6F00FF");
 44
 45    /// <summary>Represents the <see cref="HexColor" /> for <see cref="AmberA100" />: <c>#FFE57FFF</c></summary>
 146    public static readonly HexColor AmberA100 = new(value: "#FFE57FFF");
 47
 48    /// <summary>Represents the <see cref="HexColor" /> for <see cref="AmberA200" />: <c>#FFD740FF</c></summary>
 149    public static readonly HexColor AmberA200 = new(value: "#FFD740FF");
 50
 51    /// <summary>Represents the <see cref="HexColor" /> for <see cref="AmberA400" />: <c>#FFC400FF</c></summary>
 152    public static readonly HexColor AmberA400 = new(value: "#FFC400FF");
 53
 54    /// <summary>Represents the <see cref="HexColor" /> for <see cref="AmberA700" />: <c>#FFAB00FF</c></summary>
 155    public static readonly HexColor AmberA700 = new(value: "#FFAB00FF");
 56
 57    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Antiquewhite" />: <c>#FAEBD7FF</c></summary>
 158    public static readonly HexColor Antiquewhite = new(value: "#FAEBD7FF");
 59
 60    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Aqua" />: <c>#00FFFFFF</c></summary>
 161    public static readonly HexColor Aqua = new(value: "#00FFFFFF");
 62
 63    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Aquamarine" />: <c>#7FFFD4FF</c></summary>
 164    public static readonly HexColor Aquamarine = new(value: "#7FFFD4FF");
 65
 66    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Azure" />: <c>#F0FFFFFF</c></summary>
 167    public static readonly HexColor Azure = new(value: "#F0FFFFFF");
 68
 69    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Beige" />: <c>#F5F5DCFF</c></summary>
 170    public static readonly HexColor Beige = new(value: "#F5F5DCFF");
 71
 72    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Bisque" />: <c>#FFE4C4FF</c></summary>
 173    public static readonly HexColor Bisque = new(value: "#FFE4C4FF");
 74
 75    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Black" />: <c>#000000FF</c></summary>
 176    public static readonly HexColor Black = new(value: "#000000FF");
 77
 78    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blanchedalmond" />: <c>#FFEBCDFF</c></summary>
 179    public static readonly HexColor Blanchedalmond = new(value: "#FFEBCDFF");
 80
 81    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue" />: <c>#0000FFFF</c></summary>
 182    public static readonly HexColor Blue = new(value: "#0000FFFF");
 83
 84    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue100" />: <c>#BBDEFBFF</c></summary>
 185    public static readonly HexColor Blue100 = new(value: "#BBDEFBFF");
 86
 87    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue200" />: <c>#90CAF9FF</c></summary>
 188    public static readonly HexColor Blue200 = new(value: "#90CAF9FF");
 89
 90    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue300" />: <c>#64B5F6FF</c></summary>
 191    public static readonly HexColor Blue300 = new(value: "#64B5F6FF");
 92
 93    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue400" />: <c>#42A5F5FF</c></summary>
 194    public static readonly HexColor Blue400 = new(value: "#42A5F5FF");
 95
 96    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue50" />: <c>#E3F2FDFF</c></summary>
 197    public static readonly HexColor Blue50 = new(value: "#E3F2FDFF");
 98
 99    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue500" />: <c>#2196F3FF</c></summary>
 1100    public static readonly HexColor Blue500 = new(value: "#2196F3FF");
 101
 102    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue600" />: <c>#1E88E5FF</c></summary>
 1103    public static readonly HexColor Blue600 = new(value: "#1E88E5FF");
 104
 105    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue700" />: <c>#1976D2FF</c></summary>
 1106    public static readonly HexColor Blue700 = new(value: "#1976D2FF");
 107
 108    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue800" />: <c>#1565C0FF</c></summary>
 1109    public static readonly HexColor Blue800 = new(value: "#1565C0FF");
 110
 111    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blue900" />: <c>#0D47A1FF</c></summary>
 1112    public static readonly HexColor Blue900 = new(value: "#0D47A1FF");
 113
 114    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueA100" />: <c>#82B1FFFF</c></summary>
 1115    public static readonly HexColor BlueA100 = new(value: "#82B1FFFF");
 116
 117    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueA200" />: <c>#448AFFFF</c></summary>
 1118    public static readonly HexColor BlueA200 = new(value: "#448AFFFF");
 119
 120    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueA400" />: <c>#2979FFFF</c></summary>
 1121    public static readonly HexColor BlueA400 = new(value: "#2979FFFF");
 122
 123    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueA700" />: <c>#2962FFFF</c></summary>
 1124    public static readonly HexColor BlueA700 = new(value: "#2962FFFF");
 125
 126    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueGrey100" />: <c>#CFD8DCFF</c></summary>
 1127    public static readonly HexColor BlueGrey100 = new(value: "#CFD8DCFF");
 128
 129    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueGrey200" />: <c>#B0BEC5FF</c></summary>
 1130    public static readonly HexColor BlueGrey200 = new(value: "#B0BEC5FF");
 131
 132    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueGrey300" />: <c>#90A4AEFF</c></summary>
 1133    public static readonly HexColor BlueGrey300 = new(value: "#90A4AEFF");
 134
 135    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueGrey400" />: <c>#78909CFF</c></summary>
 1136    public static readonly HexColor BlueGrey400 = new(value: "#78909CFF");
 137
 138    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueGrey50" />: <c>#ECEFF1FF</c></summary>
 1139    public static readonly HexColor BlueGrey50 = new(value: "#ECEFF1FF");
 140
 141    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueGrey500" />: <c>#607D8BFF</c></summary>
 1142    public static readonly HexColor BlueGrey500 = new(value: "#607D8BFF");
 143
 144    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueGrey600" />: <c>#546E7AFF</c></summary>
 1145    public static readonly HexColor BlueGrey600 = new(value: "#546E7AFF");
 146
 147    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueGrey700" />: <c>#455A64FF</c></summary>
 1148    public static readonly HexColor BlueGrey700 = new(value: "#455A64FF");
 149
 150    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueGrey800" />: <c>#37474FFF</c></summary>
 1151    public static readonly HexColor BlueGrey800 = new(value: "#37474FFF");
 152
 153    /// <summary>Represents the <see cref="HexColor" /> for <see cref="BlueGrey900" />: <c>#263238FF</c></summary>
 1154    public static readonly HexColor BlueGrey900 = new(value: "#263238FF");
 155
 156    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Blueviolet" />: <c>#8A2BE2FF</c></summary>
 1157    public static readonly HexColor Blueviolet = new(value: "#8A2BE2FF");
 158
 159    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown" />: <c>#A52A2AFF</c></summary>
 1160    public static readonly HexColor Brown = new(value: "#A52A2AFF");
 161
 162    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown100" />: <c>#D7CCC8FF</c></summary>
 1163    public static readonly HexColor Brown100 = new(value: "#D7CCC8FF");
 164
 165    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown200" />: <c>#BCAAA4FF</c></summary>
 1166    public static readonly HexColor Brown200 = new(value: "#BCAAA4FF");
 167
 168    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown300" />: <c>#A1887FFF</c></summary>
 1169    public static readonly HexColor Brown300 = new(value: "#A1887FFF");
 170
 171    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown400" />: <c>#8D6E63FF</c></summary>
 1172    public static readonly HexColor Brown400 = new(value: "#8D6E63FF");
 173
 174    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown50" />: <c>#EFEBE9FF</c></summary>
 1175    public static readonly HexColor Brown50 = new(value: "#EFEBE9FF");
 176
 177    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown500" />: <c>#795548FF</c></summary>
 1178    public static readonly HexColor Brown500 = new(value: "#795548FF");
 179
 180    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown600" />: <c>#6D4C41FF</c></summary>
 1181    public static readonly HexColor Brown600 = new(value: "#6D4C41FF");
 182
 183    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown700" />: <c>#5D4037FF</c></summary>
 1184    public static readonly HexColor Brown700 = new(value: "#5D4037FF");
 185
 186    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown800" />: <c>#4E342EFF</c></summary>
 1187    public static readonly HexColor Brown800 = new(value: "#4E342EFF");
 188
 189    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Brown900" />: <c>#3E2723FF</c></summary>
 1190    public static readonly HexColor Brown900 = new(value: "#3E2723FF");
 191
 192    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Burlywood" />: <c>#DEB887FF</c></summary>
 1193    public static readonly HexColor Burlywood = new(value: "#DEB887FF");
 194
 195    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cadetblue" />: <c>#5F9EA0FF</c></summary>
 1196    public static readonly HexColor Cadetblue = new(value: "#5F9EA0FF");
 197
 198    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Chartreuse" />: <c>#7FFF00FF</c></summary>
 1199    public static readonly HexColor Chartreuse = new(value: "#7FFF00FF");
 200
 201    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Chocolate" />: <c>#D2691EFF</c></summary>
 1202    public static readonly HexColor Chocolate = new(value: "#D2691EFF");
 203
 204    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Coral" />: <c>#FF7F50FF</c></summary>
 1205    public static readonly HexColor Coral = new(value: "#FF7F50FF");
 206
 207    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cornflowerblue" />: <c>#6495EDFF</c></summary>
 1208    public static readonly HexColor Cornflowerblue = new(value: "#6495EDFF");
 209
 210    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cornsilk" />: <c>#FFF8DCFF</c></summary>
 1211    public static readonly HexColor Cornsilk = new(value: "#FFF8DCFF");
 212
 213    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Crimson" />: <c>#DC143CFF</c></summary>
 1214    public static readonly HexColor Crimson = new(value: "#DC143CFF");
 215
 216    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan" />: <c>#00FFFFFF</c></summary>
 1217    public static readonly HexColor Cyan = new(value: "#00FFFFFF");
 218
 219    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan100" />: <c>#B2EBF2FF</c></summary>
 1220    public static readonly HexColor Cyan100 = new(value: "#B2EBF2FF");
 221
 222    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan200" />: <c>#80DEEAFF</c></summary>
 1223    public static readonly HexColor Cyan200 = new(value: "#80DEEAFF");
 224
 225    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan300" />: <c>#4DD0E1FF</c></summary>
 1226    public static readonly HexColor Cyan300 = new(value: "#4DD0E1FF");
 227
 228    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan400" />: <c>#26C6DAFF</c></summary>
 1229    public static readonly HexColor Cyan400 = new(value: "#26C6DAFF");
 230
 231    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan50" />: <c>#E0F7FAFF</c></summary>
 1232    public static readonly HexColor Cyan50 = new(value: "#E0F7FAFF");
 233
 234    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan500" />: <c>#00BCD4FF</c></summary>
 1235    public static readonly HexColor Cyan500 = new(value: "#00BCD4FF");
 236
 237    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan600" />: <c>#00ACC1FF</c></summary>
 1238    public static readonly HexColor Cyan600 = new(value: "#00ACC1FF");
 239
 240    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan700" />: <c>#0097A7FF</c></summary>
 1241    public static readonly HexColor Cyan700 = new(value: "#0097A7FF");
 242
 243    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan800" />: <c>#00838FFF</c></summary>
 1244    public static readonly HexColor Cyan800 = new(value: "#00838FFF");
 245
 246    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Cyan900" />: <c>#006064FF</c></summary>
 1247    public static readonly HexColor Cyan900 = new(value: "#006064FF");
 248
 249    /// <summary>Represents the <see cref="HexColor" /> for <see cref="CyanA100" />: <c>#84FFFFFF</c></summary>
 1250    public static readonly HexColor CyanA100 = new(value: "#84FFFFFF");
 251
 252    /// <summary>Represents the <see cref="HexColor" /> for <see cref="CyanA200" />: <c>#18FFFFFF</c></summary>
 1253    public static readonly HexColor CyanA200 = new(value: "#18FFFFFF");
 254
 255    /// <summary>Represents the <see cref="HexColor" /> for <see cref="CyanA400" />: <c>#00E5FFFF</c></summary>
 1256    public static readonly HexColor CyanA400 = new(value: "#00E5FFFF");
 257
 258    /// <summary>Represents the <see cref="HexColor" /> for <see cref="CyanA700" />: <c>#00B8D4FF</c></summary>
 1259    public static readonly HexColor CyanA700 = new(value: "#00B8D4FF");
 260
 261    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkblue" />: <c>#00008BFF</c></summary>
 1262    public static readonly HexColor Darkblue = new(value: "#00008BFF");
 263
 264    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkcyan" />: <c>#008B8BFF</c></summary>
 1265    public static readonly HexColor Darkcyan = new(value: "#008B8BFF");
 266
 267    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkgoldenrod" />: <c>#B8860BFF</c></summary>
 1268    public static readonly HexColor Darkgoldenrod = new(value: "#B8860BFF");
 269
 270    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkgray" />: <c>#A9A9A9FF</c></summary>
 1271    public static readonly HexColor Darkgray = new(value: "#A9A9A9FF");
 272
 273    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkgreen" />: <c>#006400FF</c></summary>
 1274    public static readonly HexColor Darkgreen = new(value: "#006400FF");
 275
 276    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkkhaki" />: <c>#BDB76BFF</c></summary>
 1277    public static readonly HexColor Darkkhaki = new(value: "#BDB76BFF");
 278
 279    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkmagenta" />: <c>#8B008BFF</c></summary>
 1280    public static readonly HexColor Darkmagenta = new(value: "#8B008BFF");
 281
 282    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkolivegreen" />: <c>#556B2FFF</c></summary>
 1283    public static readonly HexColor Darkolivegreen = new(value: "#556B2FFF");
 284
 285    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkorange" />: <c>#FF8C00FF</c></summary>
 1286    public static readonly HexColor Darkorange = new(value: "#FF8C00FF");
 287
 288    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkorchid" />: <c>#9932CCFF</c></summary>
 1289    public static readonly HexColor Darkorchid = new(value: "#9932CCFF");
 290
 291    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkred" />: <c>#8B0000FF</c></summary>
 1292    public static readonly HexColor Darkred = new(value: "#8B0000FF");
 293
 294    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darksalmon" />: <c>#E9967AFF</c></summary>
 1295    public static readonly HexColor Darksalmon = new(value: "#E9967AFF");
 296
 297    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkseagreen" />: <c>#8FBC8FFF</c></summary>
 1298    public static readonly HexColor Darkseagreen = new(value: "#8FBC8FFF");
 299
 300    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkslateblue" />: <c>#483D8BFF</c></summary>
 1301    public static readonly HexColor Darkslateblue = new(value: "#483D8BFF");
 302
 303    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkslategray" />: <c>#2F4F4FFF</c></summary>
 1304    public static readonly HexColor Darkslategray = new(value: "#2F4F4FFF");
 305
 306    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkturquoise" />: <c>#00CED1FF</c></summary>
 1307    public static readonly HexColor Darkturquoise = new(value: "#00CED1FF");
 308
 309    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Darkviolet" />: <c>#9400D3FF</c></summary>
 1310    public static readonly HexColor Darkviolet = new(value: "#9400D3FF");
 311
 312    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeporange100" />: <c>#FFCCBCFF</c></summary>
 1313    public static readonly HexColor Deeporange100 = new(value: "#FFCCBCFF");
 314
 315    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeporange200" />: <c>#FFAB91FF</c></summary>
 1316    public static readonly HexColor Deeporange200 = new(value: "#FFAB91FF");
 317
 318    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeporange300" />: <c>#FF8A65FF</c></summary>
 1319    public static readonly HexColor Deeporange300 = new(value: "#FF8A65FF");
 320
 321    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeporange400" />: <c>#FF7043FF</c></summary>
 1322    public static readonly HexColor Deeporange400 = new(value: "#FF7043FF");
 323
 324    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeporange50" />: <c>#FBE9E7FF</c></summary>
 1325    public static readonly HexColor Deeporange50 = new(value: "#FBE9E7FF");
 326
 327    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeporange500" />: <c>#FF5722FF</c></summary>
 1328    public static readonly HexColor Deeporange500 = new(value: "#FF5722FF");
 329
 330    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeporange600" />: <c>#F4511EFF</c></summary>
 1331    public static readonly HexColor Deeporange600 = new(value: "#F4511EFF");
 332
 333    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeporange700" />: <c>#E64A19FF</c></summary>
 1334    public static readonly HexColor Deeporange700 = new(value: "#E64A19FF");
 335
 336    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeporange800" />: <c>#D84315FF</c></summary>
 1337    public static readonly HexColor Deeporange800 = new(value: "#D84315FF");
 338
 339    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeporange900" />: <c>#BF360CFF</c></summary>
 1340    public static readonly HexColor Deeporange900 = new(value: "#BF360CFF");
 341
 342    /// <summary>Represents the <see cref="HexColor" /> for <see cref="DeeporangeA100" />: <c>#FF9E80FF</c></summary>
 1343    public static readonly HexColor DeeporangeA100 = new(value: "#FF9E80FF");
 344
 345    /// <summary>Represents the <see cref="HexColor" /> for <see cref="DeeporangeA200" />: <c>#FF6E40FF</c></summary>
 1346    public static readonly HexColor DeeporangeA200 = new(value: "#FF6E40FF");
 347
 348    /// <summary>Represents the <see cref="HexColor" /> for <see cref="DeeporangeA400" />: <c>#FF3D00FF</c></summary>
 1349    public static readonly HexColor DeeporangeA400 = new(value: "#FF3D00FF");
 350
 351    /// <summary>Represents the <see cref="HexColor" /> for <see cref="DeeporangeA700" />: <c>#DD2C00FF</c></summary>
 1352    public static readonly HexColor DeeporangeA700 = new(value: "#DD2C00FF");
 353
 354    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppink" />: <c>#FF1493FF</c></summary>
 1355    public static readonly HexColor Deeppink = new(value: "#FF1493FF");
 356
 357    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppurple100" />: <c>#D1C4E9FF</c></summary>
 1358    public static readonly HexColor Deeppurple100 = new(value: "#D1C4E9FF");
 359
 360    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppurple200" />: <c>#B39DDBFF</c></summary>
 1361    public static readonly HexColor Deeppurple200 = new(value: "#B39DDBFF");
 362
 363    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppurple300" />: <c>#9575CDFF</c></summary>
 1364    public static readonly HexColor Deeppurple300 = new(value: "#9575CDFF");
 365
 366    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppurple400" />: <c>#7E57C2FF</c></summary>
 1367    public static readonly HexColor Deeppurple400 = new(value: "#7E57C2FF");
 368
 369    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppurple50" />: <c>#EDE7F6FF</c></summary>
 1370    public static readonly HexColor Deeppurple50 = new(value: "#EDE7F6FF");
 371
 372    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppurple500" />: <c>#673AB7FF</c></summary>
 1373    public static readonly HexColor Deeppurple500 = new(value: "#673AB7FF");
 374
 375    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppurple600" />: <c>#5E35B1FF</c></summary>
 1376    public static readonly HexColor Deeppurple600 = new(value: "#5E35B1FF");
 377
 378    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppurple700" />: <c>#512DA8FF</c></summary>
 1379    public static readonly HexColor Deeppurple700 = new(value: "#512DA8FF");
 380
 381    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppurple800" />: <c>#4527A0FF</c></summary>
 1382    public static readonly HexColor Deeppurple800 = new(value: "#4527A0FF");
 383
 384    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deeppurple900" />: <c>#311B92FF</c></summary>
 1385    public static readonly HexColor Deeppurple900 = new(value: "#311B92FF");
 386
 387    /// <summary>Represents the <see cref="HexColor" /> for <see cref="DeeppurpleA100" />: <c>#B388FFFF</c></summary>
 1388    public static readonly HexColor DeeppurpleA100 = new(value: "#B388FFFF");
 389
 390    /// <summary>Represents the <see cref="HexColor" /> for <see cref="DeeppurpleA200" />: <c>#7C4DFFFF</c></summary>
 1391    public static readonly HexColor DeeppurpleA200 = new(value: "#7C4DFFFF");
 392
 393    /// <summary>Represents the <see cref="HexColor" /> for <see cref="DeeppurpleA400" />: <c>#651FFFFF</c></summary>
 1394    public static readonly HexColor DeeppurpleA400 = new(value: "#651FFFFF");
 395
 396    /// <summary>Represents the <see cref="HexColor" /> for <see cref="DeeppurpleA700" />: <c>#6200EAFF</c></summary>
 1397    public static readonly HexColor DeeppurpleA700 = new(value: "#6200EAFF");
 398
 399    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Deepskyblue" />: <c>#00BFFFFF</c></summary>
 1400    public static readonly HexColor Deepskyblue = new(value: "#00BFFFFF");
 401
 402    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Dimgray" />: <c>#696969FF</c></summary>
 1403    public static readonly HexColor Dimgray = new(value: "#696969FF");
 404
 405    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Dodgerblue" />: <c>#1E90FFFF</c></summary>
 1406    public static readonly HexColor Dodgerblue = new(value: "#1E90FFFF");
 407
 408    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Firebrick" />: <c>#B22222FF</c></summary>
 1409    public static readonly HexColor Firebrick = new(value: "#B22222FF");
 410
 411    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Floralwhite" />: <c>#FFFAF0FF</c></summary>
 1412    public static readonly HexColor Floralwhite = new(value: "#FFFAF0FF");
 413
 414    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Forestgreen" />: <c>#228B22FF</c></summary>
 1415    public static readonly HexColor Forestgreen = new(value: "#228B22FF");
 416
 417    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Fuchsia" />: <c>#FF00FFFF</c></summary>
 1418    public static readonly HexColor Fuchsia = new(value: "#FF00FFFF");
 419
 420    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Gainsboro" />: <c>#DCDCDCFF</c></summary>
 1421    public static readonly HexColor Gainsboro = new(value: "#DCDCDCFF");
 422
 423    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Ghostwhite" />: <c>#F8F8FFFF</c></summary>
 1424    public static readonly HexColor Ghostwhite = new(value: "#F8F8FFFF");
 425
 426    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Gold" />: <c>#FFD700FF</c></summary>
 1427    public static readonly HexColor Gold = new(value: "#FFD700FF");
 428
 429    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Goldenrod" />: <c>#DAA520FF</c></summary>
 1430    public static readonly HexColor Goldenrod = new(value: "#DAA520FF");
 431
 432    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Gray" />: <c>#808080FF</c></summary>
 1433    public static readonly HexColor Gray = new(value: "#808080FF");
 434
 435    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green" />: <c>#008000FF</c></summary>
 1436    public static readonly HexColor Green = new(value: "#008000FF");
 437
 438    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green100" />: <c>#C8E6C9FF</c></summary>
 1439    public static readonly HexColor Green100 = new(value: "#C8E6C9FF");
 440
 441    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green200" />: <c>#A5D6A7FF</c></summary>
 1442    public static readonly HexColor Green200 = new(value: "#A5D6A7FF");
 443
 444    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green300" />: <c>#81C784FF</c></summary>
 1445    public static readonly HexColor Green300 = new(value: "#81C784FF");
 446
 447    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green400" />: <c>#66BB6AFF</c></summary>
 1448    public static readonly HexColor Green400 = new(value: "#66BB6AFF");
 449
 450    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green50" />: <c>#E8F5E9FF</c></summary>
 1451    public static readonly HexColor Green50 = new(value: "#E8F5E9FF");
 452
 453    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green500" />: <c>#4CAF50FF</c></summary>
 1454    public static readonly HexColor Green500 = new(value: "#4CAF50FF");
 455
 456    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green600" />: <c>#43A047FF</c></summary>
 1457    public static readonly HexColor Green600 = new(value: "#43A047FF");
 458
 459    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green700" />: <c>#388E3CFF</c></summary>
 1460    public static readonly HexColor Green700 = new(value: "#388E3CFF");
 461
 462    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green800" />: <c>#2E7D32FF</c></summary>
 1463    public static readonly HexColor Green800 = new(value: "#2E7D32FF");
 464
 465    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Green900" />: <c>#1B5E20FF</c></summary>
 1466    public static readonly HexColor Green900 = new(value: "#1B5E20FF");
 467
 468    /// <summary>Represents the <see cref="HexColor" /> for <see cref="GreenA100" />: <c>#B9F6CAFF</c></summary>
 1469    public static readonly HexColor GreenA100 = new(value: "#B9F6CAFF");
 470
 471    /// <summary>Represents the <see cref="HexColor" /> for <see cref="GreenA200" />: <c>#69F0AEFF</c></summary>
 1472    public static readonly HexColor GreenA200 = new(value: "#69F0AEFF");
 473
 474    /// <summary>Represents the <see cref="HexColor" /> for <see cref="GreenA400" />: <c>#00E676FF</c></summary>
 1475    public static readonly HexColor GreenA400 = new(value: "#00E676FF");
 476
 477    /// <summary>Represents the <see cref="HexColor" /> for <see cref="GreenA700" />: <c>#00C853FF</c></summary>
 1478    public static readonly HexColor GreenA700 = new(value: "#00C853FF");
 479
 480    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Greenyellow" />: <c>#ADFF2FFF</c></summary>
 1481    public static readonly HexColor Greenyellow = new(value: "#ADFF2FFF");
 482
 483    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Grey100" />: <c>#F5F5F5FF</c></summary>
 1484    public static readonly HexColor Grey100 = new(value: "#F5F5F5FF");
 485
 486    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Grey200" />: <c>#EEEEEEFF</c></summary>
 1487    public static readonly HexColor Grey200 = new(value: "#EEEEEEFF");
 488
 489    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Grey300" />: <c>#E0E0E0FF</c></summary>
 1490    public static readonly HexColor Grey300 = new(value: "#E0E0E0FF");
 491
 492    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Grey400" />: <c>#BDBDBDFF</c></summary>
 1493    public static readonly HexColor Grey400 = new(value: "#BDBDBDFF");
 494
 495    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Grey50" />: <c>#FAFAFAFF</c></summary>
 1496    public static readonly HexColor Grey50 = new(value: "#FAFAFAFF");
 497
 498    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Grey500" />: <c>#9E9E9EFF</c></summary>
 1499    public static readonly HexColor Grey500 = new(value: "#9E9E9EFF");
 500
 501    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Grey600" />: <c>#757575FF</c></summary>
 1502    public static readonly HexColor Grey600 = new(value: "#757575FF");
 503
 504    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Grey700" />: <c>#616161FF</c></summary>
 1505    public static readonly HexColor Grey700 = new(value: "#616161FF");
 506
 507    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Grey800" />: <c>#424242FF</c></summary>
 1508    public static readonly HexColor Grey800 = new(value: "#424242FF");
 509
 510    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Grey900" />: <c>#212121FF</c></summary>
 1511    public static readonly HexColor Grey900 = new(value: "#212121FF");
 512
 513    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Honeydew" />: <c>#F0FFF0FF</c></summary>
 1514    public static readonly HexColor Honeydew = new(value: "#F0FFF0FF");
 515
 516    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Hotpink" />: <c>#FF69B4FF</c></summary>
 1517    public static readonly HexColor Hotpink = new(value: "#FF69B4FF");
 518
 519    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indianred" />: <c>#CD5C5CFF</c></summary>
 1520    public static readonly HexColor Indianred = new(value: "#CD5C5CFF");
 521
 522    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo" />: <c>#4B0082FF</c></summary>
 1523    public static readonly HexColor Indigo = new(value: "#4B0082FF");
 524
 525    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo100" />: <c>#C5CAE9FF</c></summary>
 1526    public static readonly HexColor Indigo100 = new(value: "#C5CAE9FF");
 527
 528    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo200" />: <c>#9FA8DAFF</c></summary>
 1529    public static readonly HexColor Indigo200 = new(value: "#9FA8DAFF");
 530
 531    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo300" />: <c>#7986CBFF</c></summary>
 1532    public static readonly HexColor Indigo300 = new(value: "#7986CBFF");
 533
 534    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo400" />: <c>#5C6BC0FF</c></summary>
 1535    public static readonly HexColor Indigo400 = new(value: "#5C6BC0FF");
 536
 537    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo50" />: <c>#E8EAF6FF</c></summary>
 1538    public static readonly HexColor Indigo50 = new(value: "#E8EAF6FF");
 539
 540    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo500" />: <c>#3F51B5FF</c></summary>
 1541    public static readonly HexColor Indigo500 = new(value: "#3F51B5FF");
 542
 543    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo600" />: <c>#3949ABFF</c></summary>
 1544    public static readonly HexColor Indigo600 = new(value: "#3949ABFF");
 545
 546    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo700" />: <c>#303F9FFF</c></summary>
 1547    public static readonly HexColor Indigo700 = new(value: "#303F9FFF");
 548
 549    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo800" />: <c>#283593FF</c></summary>
 1550    public static readonly HexColor Indigo800 = new(value: "#283593FF");
 551
 552    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Indigo900" />: <c>#1A237EFF</c></summary>
 1553    public static readonly HexColor Indigo900 = new(value: "#1A237EFF");
 554
 555    /// <summary>Represents the <see cref="HexColor" /> for <see cref="IndigoA100" />: <c>#8C9EFFFF</c></summary>
 1556    public static readonly HexColor IndigoA100 = new(value: "#8C9EFFFF");
 557
 558    /// <summary>Represents the <see cref="HexColor" /> for <see cref="IndigoA200" />: <c>#536DFEFF</c></summary>
 1559    public static readonly HexColor IndigoA200 = new(value: "#536DFEFF");
 560
 561    /// <summary>Represents the <see cref="HexColor" /> for <see cref="IndigoA400" />: <c>#3D5AFEFF</c></summary>
 1562    public static readonly HexColor IndigoA400 = new(value: "#3D5AFEFF");
 563
 564    /// <summary>Represents the <see cref="HexColor" /> for <see cref="IndigoA700" />: <c>#304FFEFF</c></summary>
 1565    public static readonly HexColor IndigoA700 = new(value: "#304FFEFF");
 566
 567    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Ivory" />: <c>#FFFFF0FF</c></summary>
 1568    public static readonly HexColor Ivory = new(value: "#FFFFF0FF");
 569
 570    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Khaki" />: <c>#F0E68CFF</c></summary>
 1571    public static readonly HexColor Khaki = new(value: "#F0E68CFF");
 572
 573    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lavender" />: <c>#E6E6FAFF</c></summary>
 1574    public static readonly HexColor Lavender = new(value: "#E6E6FAFF");
 575
 576    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lavenderblush" />: <c>#FFF0F5FF</c></summary>
 1577    public static readonly HexColor Lavenderblush = new(value: "#FFF0F5FF");
 578
 579    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lawngreen" />: <c>#7CFC00FF</c></summary>
 1580    public static readonly HexColor Lawngreen = new(value: "#7CFC00FF");
 581
 582    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lemonchiffon" />: <c>#FFFACDFF</c></summary>
 1583    public static readonly HexColor Lemonchiffon = new(value: "#FFFACDFF");
 584
 585    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue" />: <c>#ADD8E6FF</c></summary>
 1586    public static readonly HexColor Lightblue = new(value: "#ADD8E6FF");
 587
 588    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue100" />: <c>#B3E5FCFF</c></summary>
 1589    public static readonly HexColor Lightblue100 = new(value: "#B3E5FCFF");
 590
 591    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue200" />: <c>#81D4FAFF</c></summary>
 1592    public static readonly HexColor Lightblue200 = new(value: "#81D4FAFF");
 593
 594    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue300" />: <c>#4FC3F7FF</c></summary>
 1595    public static readonly HexColor Lightblue300 = new(value: "#4FC3F7FF");
 596
 597    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue400" />: <c>#29B6F6FF</c></summary>
 1598    public static readonly HexColor Lightblue400 = new(value: "#29B6F6FF");
 599
 600    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue50" />: <c>#E1F5FEFF</c></summary>
 1601    public static readonly HexColor Lightblue50 = new(value: "#E1F5FEFF");
 602
 603    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue500" />: <c>#03A9F4FF</c></summary>
 1604    public static readonly HexColor Lightblue500 = new(value: "#03A9F4FF");
 605
 606    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue600" />: <c>#039BE5FF</c></summary>
 1607    public static readonly HexColor Lightblue600 = new(value: "#039BE5FF");
 608
 609    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue700" />: <c>#0288D1FF</c></summary>
 1610    public static readonly HexColor Lightblue700 = new(value: "#0288D1FF");
 611
 612    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue800" />: <c>#0277BDFF</c></summary>
 1613    public static readonly HexColor Lightblue800 = new(value: "#0277BDFF");
 614
 615    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightblue900" />: <c>#01579BFF</c></summary>
 1616    public static readonly HexColor Lightblue900 = new(value: "#01579BFF");
 617
 618    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LightblueA100" />: <c>#80D8FFFF</c></summary>
 1619    public static readonly HexColor LightblueA100 = new(value: "#80D8FFFF");
 620
 621    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LightblueA200" />: <c>#40C4FFFF</c></summary>
 1622    public static readonly HexColor LightblueA200 = new(value: "#40C4FFFF");
 623
 624    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LightblueA400" />: <c>#00B0FFFF</c></summary>
 1625    public static readonly HexColor LightblueA400 = new(value: "#00B0FFFF");
 626
 627    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LightblueA700" />: <c>#0091EAFF</c></summary>
 1628    public static readonly HexColor LightblueA700 = new(value: "#0091EAFF");
 629
 630    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightcoral" />: <c>#F08080FF</c></summary>
 1631    public static readonly HexColor Lightcoral = new(value: "#F08080FF");
 632
 633    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightcyan" />: <c>#E0FFFFFF</c></summary>
 1634    public static readonly HexColor Lightcyan = new(value: "#E0FFFFFF");
 635
 636    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgoldenrodyellow" />: <c>#FAFAD2FF</c></summa
 1637    public static readonly HexColor Lightgoldenrodyellow = new(value: "#FAFAD2FF");
 638
 639    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgray" />: <c>#D3D3D3FF</c></summary>
 1640    public static readonly HexColor Lightgray = new(value: "#D3D3D3FF");
 641
 642    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen" />: <c>#90EE90FF</c></summary>
 1643    public static readonly HexColor Lightgreen = new(value: "#90EE90FF");
 644
 645    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen100" />: <c>#DCEDC8FF</c></summary>
 1646    public static readonly HexColor Lightgreen100 = new(value: "#DCEDC8FF");
 647
 648    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen200" />: <c>#C5E1A5FF</c></summary>
 1649    public static readonly HexColor Lightgreen200 = new(value: "#C5E1A5FF");
 650
 651    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen300" />: <c>#AED581FF</c></summary>
 1652    public static readonly HexColor Lightgreen300 = new(value: "#AED581FF");
 653
 654    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen400" />: <c>#9CCC65FF</c></summary>
 1655    public static readonly HexColor Lightgreen400 = new(value: "#9CCC65FF");
 656
 657    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen50" />: <c>#F1F8E9FF</c></summary>
 1658    public static readonly HexColor Lightgreen50 = new(value: "#F1F8E9FF");
 659
 660    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen500" />: <c>#8BC34AFF</c></summary>
 1661    public static readonly HexColor Lightgreen500 = new(value: "#8BC34AFF");
 662
 663    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen600" />: <c>#7CB342FF</c></summary>
 1664    public static readonly HexColor Lightgreen600 = new(value: "#7CB342FF");
 665
 666    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen700" />: <c>#689F38FF</c></summary>
 1667    public static readonly HexColor Lightgreen700 = new(value: "#689F38FF");
 668
 669    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen800" />: <c>#558B2FFF</c></summary>
 1670    public static readonly HexColor Lightgreen800 = new(value: "#558B2FFF");
 671
 672    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightgreen900" />: <c>#33691EFF</c></summary>
 1673    public static readonly HexColor Lightgreen900 = new(value: "#33691EFF");
 674
 675    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LightgreenA100" />: <c>#CCFF90FF</c></summary>
 1676    public static readonly HexColor LightgreenA100 = new(value: "#CCFF90FF");
 677
 678    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LightgreenA200" />: <c>#B2FF59FF</c></summary>
 1679    public static readonly HexColor LightgreenA200 = new(value: "#B2FF59FF");
 680
 681    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LightgreenA400" />: <c>#76FF03FF</c></summary>
 1682    public static readonly HexColor LightgreenA400 = new(value: "#76FF03FF");
 683
 684    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LightgreenA700" />: <c>#64DD17FF</c></summary>
 1685    public static readonly HexColor LightgreenA700 = new(value: "#64DD17FF");
 686
 687    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightpink" />: <c>#FFB6C1FF</c></summary>
 1688    public static readonly HexColor Lightpink = new(value: "#FFB6C1FF");
 689
 690    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightsalmon" />: <c>#FFA07AFF</c></summary>
 1691    public static readonly HexColor Lightsalmon = new(value: "#FFA07AFF");
 692
 693    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightseagreen" />: <c>#20B2AAFF</c></summary>
 1694    public static readonly HexColor Lightseagreen = new(value: "#20B2AAFF");
 695
 696    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightskyblue" />: <c>#87CEFAFF</c></summary>
 1697    public static readonly HexColor Lightskyblue = new(value: "#87CEFAFF");
 698
 699    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightslategray" />: <c>#778899FF</c></summary>
 1700    public static readonly HexColor Lightslategray = new(value: "#778899FF");
 701
 702    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightsteelblue" />: <c>#B0C4DEFF</c></summary>
 1703    public static readonly HexColor Lightsteelblue = new(value: "#B0C4DEFF");
 704
 705    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lightyellow" />: <c>#FFFFE0FF</c></summary>
 1706    public static readonly HexColor Lightyellow = new(value: "#FFFFE0FF");
 707
 708    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime" />: <c>#00FF00FF</c></summary>
 1709    public static readonly HexColor Lime = new(value: "#00FF00FF");
 710
 711    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime100" />: <c>#F0F4C3FF</c></summary>
 1712    public static readonly HexColor Lime100 = new(value: "#F0F4C3FF");
 713
 714    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime200" />: <c>#E6EE9CFF</c></summary>
 1715    public static readonly HexColor Lime200 = new(value: "#E6EE9CFF");
 716
 717    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime300" />: <c>#DCE775FF</c></summary>
 1718    public static readonly HexColor Lime300 = new(value: "#DCE775FF");
 719
 720    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime400" />: <c>#D4E157FF</c></summary>
 1721    public static readonly HexColor Lime400 = new(value: "#D4E157FF");
 722
 723    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime50" />: <c>#F9FBE7FF</c></summary>
 1724    public static readonly HexColor Lime50 = new(value: "#F9FBE7FF");
 725
 726    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime500" />: <c>#CDDC39FF</c></summary>
 1727    public static readonly HexColor Lime500 = new(value: "#CDDC39FF");
 728
 729    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime600" />: <c>#C0CA33FF</c></summary>
 1730    public static readonly HexColor Lime600 = new(value: "#C0CA33FF");
 731
 732    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime700" />: <c>#AFB42BFF</c></summary>
 1733    public static readonly HexColor Lime700 = new(value: "#AFB42BFF");
 734
 735    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime800" />: <c>#9E9D24FF</c></summary>
 1736    public static readonly HexColor Lime800 = new(value: "#9E9D24FF");
 737
 738    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Lime900" />: <c>#827717FF</c></summary>
 1739    public static readonly HexColor Lime900 = new(value: "#827717FF");
 740
 741    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LimeA100" />: <c>#F4FF81FF</c></summary>
 1742    public static readonly HexColor LimeA100 = new(value: "#F4FF81FF");
 743
 744    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LimeA200" />: <c>#EEFF41FF</c></summary>
 1745    public static readonly HexColor LimeA200 = new(value: "#EEFF41FF");
 746
 747    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LimeA400" />: <c>#C6FF00FF</c></summary>
 1748    public static readonly HexColor LimeA400 = new(value: "#C6FF00FF");
 749
 750    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LimeA700" />: <c>#AEEA00FF</c></summary>
 1751    public static readonly HexColor LimeA700 = new(value: "#AEEA00FF");
 752
 753    /// <summary>Represents the <see cref="HexColor" /> for <see cref="LimeGreen" />: <c>#32CD32FF</c></summary>
 1754    public static readonly HexColor LimeGreen = new(value: "#32CD32FF");
 755
 756    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Linen" />: <c>#FAF0E6FF</c></summary>
 1757    public static readonly HexColor Linen = new(value: "#FAF0E6FF");
 758
 759    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Magenta" />: <c>#FF00FFFF</c></summary>
 1760    public static readonly HexColor Magenta = new(value: "#FF00FFFF");
 761
 762    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Maroon" />: <c>#800000FF</c></summary>
 1763    public static readonly HexColor Maroon = new(value: "#800000FF");
 764
 765    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mediumaquamarine" />: <c>#66CDAAFF</c></summary>
 1766    public static readonly HexColor Mediumaquamarine = new(value: "#66CDAAFF");
 767
 768    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mediumblue" />: <c>#0000CDFF</c></summary>
 1769    public static readonly HexColor Mediumblue = new(value: "#0000CDFF");
 770
 771    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mediumorchid" />: <c>#BA55D3FF</c></summary>
 1772    public static readonly HexColor Mediumorchid = new(value: "#BA55D3FF");
 773
 774    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mediumpurple" />: <c>#9370DBFF</c></summary>
 1775    public static readonly HexColor Mediumpurple = new(value: "#9370DBFF");
 776
 777    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mediumseagreen" />: <c>#3CB371FF</c></summary>
 1778    public static readonly HexColor Mediumseagreen = new(value: "#3CB371FF");
 779
 780    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mediumslateblue" />: <c>#7B68EEFF</c></summary>
 1781    public static readonly HexColor Mediumslateblue = new(value: "#7B68EEFF");
 782
 783    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mediumspringgreen" />: <c>#00FA9AFF</c></summary>
 1784    public static readonly HexColor Mediumspringgreen = new(value: "#00FA9AFF");
 785
 786    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mediumturquoise" />: <c>#48D1CCFF</c></summary>
 1787    public static readonly HexColor Mediumturquoise = new(value: "#48D1CCFF");
 788
 789    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mediumvioletred" />: <c>#C71585FF</c></summary>
 1790    public static readonly HexColor Mediumvioletred = new(value: "#C71585FF");
 791
 792    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Midnightblue" />: <c>#191970FF</c></summary>
 1793    public static readonly HexColor Midnightblue = new(value: "#191970FF");
 794
 795    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mintcream" />: <c>#F5FFFAFF</c></summary>
 1796    public static readonly HexColor Mintcream = new(value: "#F5FFFAFF");
 797
 798    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Mistyrose" />: <c>#FFE4E1FF</c></summary>
 1799    public static readonly HexColor Mistyrose = new(value: "#FFE4E1FF");
 800
 801    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Moccasin" />: <c>#FFE4B5FF</c></summary>
 1802    public static readonly HexColor Moccasin = new(value: "#FFE4B5FF");
 803
 804    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Navajowhite" />: <c>#FFDEADFF</c></summary>
 1805    public static readonly HexColor Navajowhite = new(value: "#FFDEADFF");
 806
 807    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Navy" />: <c>#000080FF</c></summary>
 1808    public static readonly HexColor Navy = new(value: "#000080FF");
 809
 810    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Oldlace" />: <c>#FDF5E6FF</c></summary>
 1811    public static readonly HexColor Oldlace = new(value: "#FDF5E6FF");
 812
 813    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Olive" />: <c>#808000FF</c></summary>
 1814    public static readonly HexColor Olive = new(value: "#808000FF");
 815
 816    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Olivedrab" />: <c>#6B8E23FF</c></summary>
 1817    public static readonly HexColor Olivedrab = new(value: "#6B8E23FF");
 818
 819    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange" />: <c>#FFA500FF</c></summary>
 1820    public static readonly HexColor Orange = new(value: "#FFA500FF");
 821
 822    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange100" />: <c>#FFE0B2FF</c></summary>
 1823    public static readonly HexColor Orange100 = new(value: "#FFE0B2FF");
 824
 825    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange200" />: <c>#FFCC80FF</c></summary>
 1826    public static readonly HexColor Orange200 = new(value: "#FFCC80FF");
 827
 828    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange300" />: <c>#FFB74DFF</c></summary>
 1829    public static readonly HexColor Orange300 = new(value: "#FFB74DFF");
 830
 831    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange400" />: <c>#FFA726FF</c></summary>
 1832    public static readonly HexColor Orange400 = new(value: "#FFA726FF");
 833
 834    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange50" />: <c>#FFF3E0FF</c></summary>
 1835    public static readonly HexColor Orange50 = new(value: "#FFF3E0FF");
 836
 837    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange500" />: <c>#FF9800FF</c></summary>
 1838    public static readonly HexColor Orange500 = new(value: "#FF9800FF");
 839
 840    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange600" />: <c>#FB8C00FF</c></summary>
 1841    public static readonly HexColor Orange600 = new(value: "#FB8C00FF");
 842
 843    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange700" />: <c>#F57C00FF</c></summary>
 1844    public static readonly HexColor Orange700 = new(value: "#F57C00FF");
 845
 846    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange800" />: <c>#EF6C00FF</c></summary>
 1847    public static readonly HexColor Orange800 = new(value: "#EF6C00FF");
 848
 849    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orange900" />: <c>#E65100FF</c></summary>
 1850    public static readonly HexColor Orange900 = new(value: "#E65100FF");
 851
 852    /// <summary>Represents the <see cref="HexColor" /> for <see cref="OrangeA100" />: <c>#FFD180FF</c></summary>
 1853    public static readonly HexColor OrangeA100 = new(value: "#FFD180FF");
 854
 855    /// <summary>Represents the <see cref="HexColor" /> for <see cref="OrangeA200" />: <c>#FFAB40FF</c></summary>
 1856    public static readonly HexColor OrangeA200 = new(value: "#FFAB40FF");
 857
 858    /// <summary>Represents the <see cref="HexColor" /> for <see cref="OrangeA400" />: <c>#FF9100FF</c></summary>
 1859    public static readonly HexColor OrangeA400 = new(value: "#FF9100FF");
 860
 861    /// <summary>Represents the <see cref="HexColor" /> for <see cref="OrangeA700" />: <c>#FF6D00FF</c></summary>
 1862    public static readonly HexColor OrangeA700 = new(value: "#FF6D00FF");
 863
 864    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orangered" />: <c>#FF4500FF</c></summary>
 1865    public static readonly HexColor Orangered = new(value: "#FF4500FF");
 866
 867    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Orchid" />: <c>#DA70D6FF</c></summary>
 1868    public static readonly HexColor Orchid = new(value: "#DA70D6FF");
 869
 870    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Palegoldenrod" />: <c>#EEE8AAFF</c></summary>
 1871    public static readonly HexColor Palegoldenrod = new(value: "#EEE8AAFF");
 872
 873    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Palegreen" />: <c>#98FB98FF</c></summary>
 1874    public static readonly HexColor Palegreen = new(value: "#98FB98FF");
 875
 876    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Paleturquoise" />: <c>#AFEEEEFF</c></summary>
 1877    public static readonly HexColor Paleturquoise = new(value: "#AFEEEEFF");
 878
 879    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Palevioletred" />: <c>#DB7093FF</c></summary>
 1880    public static readonly HexColor Palevioletred = new(value: "#DB7093FF");
 881
 882    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Papayawhip" />: <c>#FFEFD5FF</c></summary>
 1883    public static readonly HexColor Papayawhip = new(value: "#FFEFD5FF");
 884
 885    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Peachpuff" />: <c>#FFDAB9FF</c></summary>
 1886    public static readonly HexColor Peachpuff = new(value: "#FFDAB9FF");
 887
 888    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Peru" />: <c>#CD853FFF</c></summary>
 1889    public static readonly HexColor Peru = new(value: "#CD853FFF");
 890
 891    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink" />: <c>#FFC0CBFF</c></summary>
 1892    public static readonly HexColor Pink = new(value: "#FFC0CBFF");
 893
 894    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink100" />: <c>#F8BBD0FF</c></summary>
 1895    public static readonly HexColor Pink100 = new(value: "#F8BBD0FF");
 896
 897    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink200" />: <c>#F48FB1FF</c></summary>
 1898    public static readonly HexColor Pink200 = new(value: "#F48FB1FF");
 899
 900    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink300" />: <c>#F06292FF</c></summary>
 1901    public static readonly HexColor Pink300 = new(value: "#F06292FF");
 902
 903    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink400" />: <c>#EC407AFF</c></summary>
 1904    public static readonly HexColor Pink400 = new(value: "#EC407AFF");
 905
 906    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink50" />: <c>#FCE4ECFF</c></summary>
 1907    public static readonly HexColor Pink50 = new(value: "#FCE4ECFF");
 908
 909    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink500" />: <c>#E91E63FF</c></summary>
 1910    public static readonly HexColor Pink500 = new(value: "#E91E63FF");
 911
 912    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink600" />: <c>#D81B60FF</c></summary>
 1913    public static readonly HexColor Pink600 = new(value: "#D81B60FF");
 914
 915    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink700" />: <c>#C2185BFF</c></summary>
 1916    public static readonly HexColor Pink700 = new(value: "#C2185BFF");
 917
 918    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink800" />: <c>#AD1457FF</c></summary>
 1919    public static readonly HexColor Pink800 = new(value: "#AD1457FF");
 920
 921    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Pink900" />: <c>#880E4FFF</c></summary>
 1922    public static readonly HexColor Pink900 = new(value: "#880E4FFF");
 923
 924    /// <summary>Represents the <see cref="HexColor" /> for <see cref="PinkA100" />: <c>#FF80ABFF</c></summary>
 1925    public static readonly HexColor PinkA100 = new(value: "#FF80ABFF");
 926
 927    /// <summary>Represents the <see cref="HexColor" /> for <see cref="PinkA200" />: <c>#FF4081FF</c></summary>
 1928    public static readonly HexColor PinkA200 = new(value: "#FF4081FF");
 929
 930    /// <summary>Represents the <see cref="HexColor" /> for <see cref="PinkA400" />: <c>#F50057FF</c></summary>
 1931    public static readonly HexColor PinkA400 = new(value: "#F50057FF");
 932
 933    /// <summary>Represents the <see cref="HexColor" /> for <see cref="PinkA700" />: <c>#C51162FF</c></summary>
 1934    public static readonly HexColor PinkA700 = new(value: "#C51162FF");
 935
 936    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Plum" />: <c>#DDA0DDFF</c></summary>
 1937    public static readonly HexColor Plum = new(value: "#DDA0DDFF");
 938
 939    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Powderblue" />: <c>#B0E0E6FF</c></summary>
 1940    public static readonly HexColor Powderblue = new(value: "#B0E0E6FF");
 941
 942    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple" />: <c>#800080FF</c></summary>
 1943    public static readonly HexColor Purple = new(value: "#800080FF");
 944
 945    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple100" />: <c>#E1BEE7FF</c></summary>
 1946    public static readonly HexColor Purple100 = new(value: "#E1BEE7FF");
 947
 948    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple200" />: <c>#CE93D8FF</c></summary>
 1949    public static readonly HexColor Purple200 = new(value: "#CE93D8FF");
 950
 951    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple300" />: <c>#BA68C8FF</c></summary>
 1952    public static readonly HexColor Purple300 = new(value: "#BA68C8FF");
 953
 954    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple400" />: <c>#AB47BCFF</c></summary>
 1955    public static readonly HexColor Purple400 = new(value: "#AB47BCFF");
 956
 957    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple50" />: <c>#F3E5F5FF</c></summary>
 1958    public static readonly HexColor Purple50 = new(value: "#F3E5F5FF");
 959
 960    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple500" />: <c>#9C27B0FF</c></summary>
 1961    public static readonly HexColor Purple500 = new(value: "#9C27B0FF");
 962
 963    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple600" />: <c>#8E24AAFF</c></summary>
 1964    public static readonly HexColor Purple600 = new(value: "#8E24AAFF");
 965
 966    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple700" />: <c>#7B1FA2FF</c></summary>
 1967    public static readonly HexColor Purple700 = new(value: "#7B1FA2FF");
 968
 969    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple800" />: <c>#6A1B9AFF</c></summary>
 1970    public static readonly HexColor Purple800 = new(value: "#6A1B9AFF");
 971
 972    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Purple900" />: <c>#4A148CFF</c></summary>
 1973    public static readonly HexColor Purple900 = new(value: "#4A148CFF");
 974
 975    /// <summary>Represents the <see cref="HexColor" /> for <see cref="PurpleA100" />: <c>#EA80FCFF</c></summary>
 1976    public static readonly HexColor PurpleA100 = new(value: "#EA80FCFF");
 977
 978    /// <summary>Represents the <see cref="HexColor" /> for <see cref="PurpleA200" />: <c>#E040FBFF</c></summary>
 1979    public static readonly HexColor PurpleA200 = new(value: "#E040FBFF");
 980
 981    /// <summary>Represents the <see cref="HexColor" /> for <see cref="PurpleA400" />: <c>#D500F9FF</c></summary>
 1982    public static readonly HexColor PurpleA400 = new(value: "#D500F9FF");
 983
 984    /// <summary>Represents the <see cref="HexColor" /> for <see cref="PurpleA700" />: <c>#AA00FFFF</c></summary>
 1985    public static readonly HexColor PurpleA700 = new(value: "#AA00FFFF");
 986
 987    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red" />: <c>#FF0000FF</c></summary>
 1988    public static readonly HexColor Red = new(value: "#FF0000FF");
 989
 990    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red100" />: <c>#FFCDD2FF</c></summary>
 1991    public static readonly HexColor Red100 = new(value: "#FFCDD2FF");
 992
 993    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red200" />: <c>#EF9A9AFF</c></summary>
 1994    public static readonly HexColor Red200 = new(value: "#EF9A9AFF");
 995
 996    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red300" />: <c>#E57373FF</c></summary>
 1997    public static readonly HexColor Red300 = new(value: "#E57373FF");
 998
 999    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red400" />: <c>#EF5350FF</c></summary>
 11000    public static readonly HexColor Red400 = new(value: "#EF5350FF");
 1001
 1002    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red50" />: <c>#FFEBEEFF</c></summary>
 11003    public static readonly HexColor Red50 = new(value: "#FFEBEEFF");
 1004
 1005    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red500" />: <c>#F44336FF</c></summary>
 11006    public static readonly HexColor Red500 = new(value: "#F44336FF");
 1007
 1008    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red600" />: <c>#E53935FF</c></summary>
 11009    public static readonly HexColor Red600 = new(value: "#E53935FF");
 1010
 1011    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red700" />: <c>#D32F2FFF</c></summary>
 11012    public static readonly HexColor Red700 = new(value: "#D32F2FFF");
 1013
 1014    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red800" />: <c>#C62828FF</c></summary>
 11015    public static readonly HexColor Red800 = new(value: "#C62828FF");
 1016
 1017    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Red900" />: <c>#B71C1CFF</c></summary>
 11018    public static readonly HexColor Red900 = new(value: "#B71C1CFF");
 1019
 1020    /// <summary>Represents the <see cref="HexColor" /> for <see cref="RedA100" />: <c>#FF8A80FF</c></summary>
 11021    public static readonly HexColor RedA100 = new(value: "#FF8A80FF");
 1022
 1023    /// <summary>Represents the <see cref="HexColor" /> for <see cref="RedA200" />: <c>#FF5252FF</c></summary>
 11024    public static readonly HexColor RedA200 = new(value: "#FF5252FF");
 1025
 1026    /// <summary>Represents the <see cref="HexColor" /> for <see cref="RedA400" />: <c>#FF1744FF</c></summary>
 11027    public static readonly HexColor RedA400 = new(value: "#FF1744FF");
 1028
 1029    /// <summary>Represents the <see cref="HexColor" /> for <see cref="RedA700" />: <c>#D50000FF</c></summary>
 11030    public static readonly HexColor RedA700 = new(value: "#D50000FF");
 1031
 1032    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Rosybrown" />: <c>#BC8F8FFF</c></summary>
 11033    public static readonly HexColor Rosybrown = new(value: "#BC8F8FFF");
 1034
 1035    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Royalblue" />: <c>#4169E1FF</c></summary>
 11036    public static readonly HexColor Royalblue = new(value: "#4169E1FF");
 1037
 1038    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Saddlebrown" />: <c>#8B4513FF</c></summary>
 11039    public static readonly HexColor Saddlebrown = new(value: "#8B4513FF");
 1040
 1041    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Salmon" />: <c>#FA8072FF</c></summary>
 11042    public static readonly HexColor Salmon = new(value: "#FA8072FF");
 1043
 1044    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Sandybrown" />: <c>#F4A460FF</c></summary>
 11045    public static readonly HexColor Sandybrown = new(value: "#F4A460FF");
 1046
 1047    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Seagreen" />: <c>#2E8B57FF</c></summary>
 11048    public static readonly HexColor Seagreen = new(value: "#2E8B57FF");
 1049
 1050    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Seashell" />: <c>#FFF5EEFF</c></summary>
 11051    public static readonly HexColor Seashell = new(value: "#FFF5EEFF");
 1052
 1053    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Sienna" />: <c>#A0522DFF</c></summary>
 11054    public static readonly HexColor Sienna = new(value: "#A0522DFF");
 1055
 1056    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Silver" />: <c>#C0C0C0FF</c></summary>
 11057    public static readonly HexColor Silver = new(value: "#C0C0C0FF");
 1058
 1059    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Skyblue" />: <c>#87CEEBFF</c></summary>
 11060    public static readonly HexColor Skyblue = new(value: "#87CEEBFF");
 1061
 1062    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Slateblue" />: <c>#6A5ACDFF</c></summary>
 11063    public static readonly HexColor Slateblue = new(value: "#6A5ACDFF");
 1064
 1065    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Slategray" />: <c>#708090FF</c></summary>
 11066    public static readonly HexColor Slategray = new(value: "#708090FF");
 1067
 1068    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Snow" />: <c>#FFFAFAFF</c></summary>
 11069    public static readonly HexColor Snow = new(value: "#FFFAFAFF");
 1070
 1071    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Springgreen" />: <c>#00FF7FFF</c></summary>
 11072    public static readonly HexColor Springgreen = new(value: "#00FF7FFF");
 1073
 1074    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Steelblue" />: <c>#4682B4FF</c></summary>
 11075    public static readonly HexColor Steelblue = new(value: "#4682B4FF");
 1076
 1077    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Tan" />: <c>#D2B48CFF</c></summary>
 11078    public static readonly HexColor Tan = new(value: "#D2B48CFF");
 1079
 1080    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal" />: <c>#008080FF</c></summary>
 11081    public static readonly HexColor Teal = new(value: "#008080FF");
 1082
 1083    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal100" />: <c>#B2DFDBFF</c></summary>
 11084    public static readonly HexColor Teal100 = new(value: "#B2DFDBFF");
 1085
 1086    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal200" />: <c>#80CBC4FF</c></summary>
 11087    public static readonly HexColor Teal200 = new(value: "#80CBC4FF");
 1088
 1089    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal300" />: <c>#4DB6ACFF</c></summary>
 11090    public static readonly HexColor Teal300 = new(value: "#4DB6ACFF");
 1091
 1092    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal400" />: <c>#26A69AFF</c></summary>
 11093    public static readonly HexColor Teal400 = new(value: "#26A69AFF");
 1094
 1095    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal50" />: <c>#E0F2F1FF</c></summary>
 11096    public static readonly HexColor Teal50 = new(value: "#E0F2F1FF");
 1097
 1098    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal500" />: <c>#009688FF</c></summary>
 11099    public static readonly HexColor Teal500 = new(value: "#009688FF");
 1100
 1101    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal600" />: <c>#00897BFF</c></summary>
 11102    public static readonly HexColor Teal600 = new(value: "#00897BFF");
 1103
 1104    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal700" />: <c>#00796BFF</c></summary>
 11105    public static readonly HexColor Teal700 = new(value: "#00796BFF");
 1106
 1107    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal800" />: <c>#00695CFF</c></summary>
 11108    public static readonly HexColor Teal800 = new(value: "#00695CFF");
 1109
 1110    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Teal900" />: <c>#004D40FF</c></summary>
 11111    public static readonly HexColor Teal900 = new(value: "#004D40FF");
 1112
 1113    /// <summary>Represents the <see cref="HexColor" /> for <see cref="TealA100" />: <c>#A7FFEBFF</c></summary>
 11114    public static readonly HexColor TealA100 = new(value: "#A7FFEBFF");
 1115
 1116    /// <summary>Represents the <see cref="HexColor" /> for <see cref="TealA200" />: <c>#64FFDAFF</c></summary>
 11117    public static readonly HexColor TealA200 = new(value: "#64FFDAFF");
 1118
 1119    /// <summary>Represents the <see cref="HexColor" /> for <see cref="TealA400" />: <c>#1DE9B6FF</c></summary>
 11120    public static readonly HexColor TealA400 = new(value: "#1DE9B6FF");
 1121
 1122    /// <summary>Represents the <see cref="HexColor" /> for <see cref="TealA700" />: <c>#00BFA5FF</c></summary>
 11123    public static readonly HexColor TealA700 = new(value: "#00BFA5FF");
 1124
 1125    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Thistle" />: <c>#D8BFD8FF</c></summary>
 11126    public static readonly HexColor Thistle = new(value: "#D8BFD8FF");
 1127
 1128    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Tomato" />: <c>#FF6347FF</c></summary>
 11129    public static readonly HexColor Tomato = new(value: "#FF6347FF");
 1130
 1131    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Transparent" />: <c>#00000000</c></summary>
 11132    public static readonly HexColor Transparent = new(value: "#00000000");
 1133
 1134    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Turquoise" />: <c>#40E0D0FF</c></summary>
 11135    public static readonly HexColor Turquoise = new(value: "#40E0D0FF");
 1136
 1137    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Violet" />: <c>#EE82EEFF</c></summary>
 11138    public static readonly HexColor Violet = new(value: "#EE82EEFF");
 1139
 1140    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Wheat" />: <c>#F5DEB3FF</c></summary>
 11141    public static readonly HexColor Wheat = new(value: "#F5DEB3FF");
 1142
 1143    /// <summary>Represents the <see cref="HexColor" /> for <see cref="White" />: <c>#FFFFFFFF</c></summary>
 11144    public static readonly HexColor White = new(value: "#FFFFFFFF");
 1145
 1146    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Whitesmoke" />: <c>#F5F5F5FF</c></summary>
 11147    public static readonly HexColor Whitesmoke = new(value: "#F5F5F5FF");
 1148
 1149    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow" />: <c>#FFFF00FF</c></summary>
 11150    public static readonly HexColor Yellow = new(value: "#FFFF00FF");
 1151
 1152    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow100" />: <c>#FFF9C4FF</c></summary>
 11153    public static readonly HexColor Yellow100 = new(value: "#FFF9C4FF");
 1154
 1155    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow200" />: <c>#FFF59DFF</c></summary>
 11156    public static readonly HexColor Yellow200 = new(value: "#FFF59DFF");
 1157
 1158    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow300" />: <c>#FFF176FF</c></summary>
 11159    public static readonly HexColor Yellow300 = new(value: "#FFF176FF");
 1160
 1161    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow400" />: <c>#FFEE58FF</c></summary>
 11162    public static readonly HexColor Yellow400 = new(value: "#FFEE58FF");
 1163
 1164    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow50" />: <c>#FFFDE7FF</c></summary>
 11165    public static readonly HexColor Yellow50 = new(value: "#FFFDE7FF");
 1166
 1167    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow500" />: <c>#FFEB3BFF</c></summary>
 11168    public static readonly HexColor Yellow500 = new(value: "#FFEB3BFF");
 1169
 1170    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow600" />: <c>#FDD835FF</c></summary>
 11171    public static readonly HexColor Yellow600 = new(value: "#FDD835FF");
 1172
 1173    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow700" />: <c>#FBC02DFF</c></summary>
 11174    public static readonly HexColor Yellow700 = new(value: "#FBC02DFF");
 1175
 1176    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow800" />: <c>#F9A825FF</c></summary>
 11177    public static readonly HexColor Yellow800 = new(value: "#F9A825FF");
 1178
 1179    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellow900" />: <c>#F57F17FF</c></summary>
 11180    public static readonly HexColor Yellow900 = new(value: "#F57F17FF");
 1181
 1182    /// <summary>Represents the <see cref="HexColor" /> for <see cref="YellowA100" />: <c>#FFFF8DFF</c></summary>
 11183    public static readonly HexColor YellowA100 = new(value: "#FFFF8DFF");
 1184
 1185    /// <summary>Represents the <see cref="HexColor" /> for <see cref="YellowA200" />: <c>#FFFF00FF</c></summary>
 11186    public static readonly HexColor YellowA200 = new(value: "#FFFF00FF");
 1187
 1188    /// <summary>Represents the <see cref="HexColor" /> for <see cref="YellowA400" />: <c>#FFEA00FF</c></summary>
 11189    public static readonly HexColor YellowA400 = new(value: "#FFEA00FF");
 1190
 1191    /// <summary>Represents the <see cref="HexColor" /> for <see cref="YellowA700" />: <c>#FFD600FF</c></summary>
 11192    public static readonly HexColor YellowA700 = new(value: "#FFD600FF");
 1193
 1194    /// <summary>Represents the <see cref="HexColor" /> for <see cref="Yellowgreen" />: <c>#9ACD32FF</c></summary>
 11195    public static readonly HexColor Yellowgreen = new(value: "#9ACD32FF");
 1196
 1197    /// <summary>
 1198    /// Lazily initialized dictionary that provides read-only access to all named colors keyed by their constant name, u
 1199    /// case-insensitive string comparer.
 1200    /// </summary>
 1201    /// <remarks>
 1202    /// The underlying dictionary is constructed on first access by reflecting over the public static <see cref="HexColo
 1203    /// fields declared on the <see cref="Colors" /> type and materializing them into an immutable dictionary.
 1204    /// </remarks>
 11205    private static readonly Lazy<IReadOnlyDictionary<string, HexColor>> AllColors = new(
 11206        valueFactory: BuildDictionary,
 11207        isThreadSafe: true
 11208    );
 1209
 1210    /// <summary>
 1211    /// Builds an immutable, case-insensitive dictionary that maps color names to their corresponding <see cref="HexColo
 1212    /// values.
 1213    /// </summary>
 1214    /// <returns>
 1215    /// A read-only dictionary containing all publicly exposed <see cref="HexColor" /> fields defined on the
 1216    /// <see cref="Colors" /> type, keyed by field name.
 1217    /// </returns>
 1218    /// <remarks>
 1219    /// This method is used as the value factory for the lazily initialized color dictionary and relies on reflection to
 1220    /// discover the color fields at runtime.
 1221    /// </remarks>
 1222    private static IReadOnlyDictionary<string, HexColor> BuildDictionary()
 1223    {
 21224        var type = typeof(Colors);
 1225
 21226        var builder =
 21227            ImmutableDictionary.CreateBuilder<string, HexColor>(keyComparer: StringComparer.OrdinalIgnoreCase);
 1228
 15841229        foreach (var fieldInfo in type.GetFields(bindingAttr: BindingFlags.Public | BindingFlags.Static))
 1230        {
 7901231            if (fieldInfo.FieldType == typeof(HexColor))
 1232            {
 7901233                builder[key: fieldInfo.Name] = (HexColor)fieldInfo.GetValue(obj: null)!;
 1234            }
 1235        }
 1236
 21237        return builder.ToImmutable();
 1238    }
 1239
 1240    /// <summary>
 1241    /// Determines whether a named color with the specified <paramref name="name" /> exists in the color library.
 1242    /// </summary>
 1243    /// <param name="name">
 1244    /// The case-insensitive name of the color to look up. This value must not be null, empty, or consist only of whites
 1245    /// characters.
 1246    /// </param>
 1247    /// <returns>
 1248    /// <see langword="true" /> if a color with the specified name is defined; otherwise, <see langword="false" />.
 1249    /// </returns>
 1250    /// <remarks>
 1251    /// This method validates <paramref name="name" /> using a guard clause before performing the lookup against the laz
 1252    /// initialized color dictionary.
 1253    /// </remarks>
 1254    public static bool Contains(string name)
 1255    {
 71256        AryGuard.NotNullOrWhiteSpace(value: name);
 1257
 31258        return AllColors.Value.ContainsKey(key: name);
 1259    }
 1260
 1261    /// <summary>
 1262    /// Attempts to retrieve the <see cref="HexColor" /> associated with the specified color <paramref name="name" />.
 1263    /// </summary>
 1264    /// <param name="name">
 1265    /// The case-insensitive name of the color to retrieve. This value must not be null, empty, or consist only of white
 1266    /// characters.
 1267    /// </param>
 1268    /// <param name="value">
 1269    /// When this method returns, contains the <see cref="HexColor" /> associated with <paramref name="name" /> if it is
 1270    /// otherwise, contains the default <see cref="HexColor" /> value.
 1271    /// </param>
 1272    /// <returns>
 1273    /// <see langword="true" /> if a color with the specified name exists and <paramref name="value" /> was set; otherwi
 1274    /// <see langword="false" />.
 1275    /// </returns>
 1276    /// <remarks>
 1277    /// This method validates <paramref name="name" /> using a guard clause before attempting the lookup against the laz
 1278    /// initialized color dictionary.
 1279    /// </remarks>
 1280    public static bool TryGet(string name, out HexColor value)
 1281    {
 161282        AryGuard.NotNullOrWhiteSpace(value: name);
 1283
 121284        return AllColors.Value.TryGetValue(key: name, value: out value);
 1285    }
 1286}