mirror of https://github.com/SixLabors/ImageSharp
109 changed files with 2718 additions and 2723 deletions
@ -1,728 +0,0 @@ |
|||
// <copyright file="Color.Definitions.cs" company="James Jackson-South">
|
|||
// Copyright (c) James Jackson-South and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
// </copyright>
|
|||
|
|||
namespace ImageSharp |
|||
{ |
|||
/// <summary>
|
|||
/// Packed vector type containing four 8-bit unsigned normalized values ranging from 0 to 255.
|
|||
/// The color components are stored in red, green, blue, and alpha order.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// This struct is fully mutable. This is done (against the guidelines) for the sake of performance,
|
|||
/// as it avoids the need to create new values for modification operations.
|
|||
/// </remarks>
|
|||
public partial struct Color |
|||
{ |
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F0F8FF.
|
|||
/// </summary>
|
|||
public static readonly Color AliceBlue = NamedColors<Color>.AliceBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FAEBD7.
|
|||
/// </summary>
|
|||
public static readonly Color AntiqueWhite = NamedColors<Color>.AntiqueWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #00FFFF.
|
|||
/// </summary>
|
|||
public static readonly Color Aqua = NamedColors<Color>.Aqua; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #7FFFD4.
|
|||
/// </summary>
|
|||
public static readonly Color Aquamarine = NamedColors<Color>.Aquamarine; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F0FFFF.
|
|||
/// </summary>
|
|||
public static readonly Color Azure = NamedColors<Color>.Azure; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F5F5DC.
|
|||
/// </summary>
|
|||
public static readonly Color Beige = NamedColors<Color>.Beige; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFE4C4.
|
|||
/// </summary>
|
|||
public static readonly Color Bisque = NamedColors<Color>.Bisque; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #000000.
|
|||
/// </summary>
|
|||
public static readonly Color Black = NamedColors<Color>.Black; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFEBCD.
|
|||
/// </summary>
|
|||
public static readonly Color BlanchedAlmond = NamedColors<Color>.BlanchedAlmond; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #0000FF.
|
|||
/// </summary>
|
|||
public static readonly Color Blue = NamedColors<Color>.Blue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #8A2BE2.
|
|||
/// </summary>
|
|||
public static readonly Color BlueViolet = NamedColors<Color>.BlueViolet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #A52A2A.
|
|||
/// </summary>
|
|||
public static readonly Color Brown = NamedColors<Color>.Brown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #DEB887.
|
|||
/// </summary>
|
|||
public static readonly Color BurlyWood = NamedColors<Color>.BurlyWood; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #5F9EA0.
|
|||
/// </summary>
|
|||
public static readonly Color CadetBlue = NamedColors<Color>.CadetBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #7FFF00.
|
|||
/// </summary>
|
|||
public static readonly Color Chartreuse = NamedColors<Color>.Chartreuse; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #D2691E.
|
|||
/// </summary>
|
|||
public static readonly Color Chocolate = NamedColors<Color>.Chocolate; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FF7F50.
|
|||
/// </summary>
|
|||
public static readonly Color Coral = NamedColors<Color>.Coral; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #6495ED.
|
|||
/// </summary>
|
|||
public static readonly Color CornflowerBlue = NamedColors<Color>.CornflowerBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFF8DC.
|
|||
/// </summary>
|
|||
public static readonly Color Cornsilk = NamedColors<Color>.Cornsilk; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #DC143C.
|
|||
/// </summary>
|
|||
public static readonly Color Crimson = NamedColors<Color>.Crimson; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #00FFFF.
|
|||
/// </summary>
|
|||
public static readonly Color Cyan = NamedColors<Color>.Cyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #00008B.
|
|||
/// </summary>
|
|||
public static readonly Color DarkBlue = NamedColors<Color>.DarkBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #008B8B.
|
|||
/// </summary>
|
|||
public static readonly Color DarkCyan = NamedColors<Color>.DarkCyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #B8860B.
|
|||
/// </summary>
|
|||
public static readonly Color DarkGoldenrod = NamedColors<Color>.DarkGoldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #A9A9A9.
|
|||
/// </summary>
|
|||
public static readonly Color DarkGray = NamedColors<Color>.DarkGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #006400.
|
|||
/// </summary>
|
|||
public static readonly Color DarkGreen = NamedColors<Color>.DarkGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #BDB76B.
|
|||
/// </summary>
|
|||
public static readonly Color DarkKhaki = NamedColors<Color>.DarkKhaki; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #8B008B.
|
|||
/// </summary>
|
|||
public static readonly Color DarkMagenta = NamedColors<Color>.DarkMagenta; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #556B2F.
|
|||
/// </summary>
|
|||
public static readonly Color DarkOliveGreen = NamedColors<Color>.DarkOliveGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FF8C00.
|
|||
/// </summary>
|
|||
public static readonly Color DarkOrange = NamedColors<Color>.DarkOrange; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #9932CC.
|
|||
/// </summary>
|
|||
public static readonly Color DarkOrchid = NamedColors<Color>.DarkOrchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #8B0000.
|
|||
/// </summary>
|
|||
public static readonly Color DarkRed = NamedColors<Color>.DarkRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #E9967A.
|
|||
/// </summary>
|
|||
public static readonly Color DarkSalmon = NamedColors<Color>.DarkSalmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #8FBC8B.
|
|||
/// </summary>
|
|||
public static readonly Color DarkSeaGreen = NamedColors<Color>.DarkSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #483D8B.
|
|||
/// </summary>
|
|||
public static readonly Color DarkSlateBlue = NamedColors<Color>.DarkSlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #2F4F4F.
|
|||
/// </summary>
|
|||
public static readonly Color DarkSlateGray = NamedColors<Color>.DarkSlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #00CED1.
|
|||
/// </summary>
|
|||
public static readonly Color DarkTurquoise = NamedColors<Color>.DarkTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #9400D3.
|
|||
/// </summary>
|
|||
public static readonly Color DarkViolet = NamedColors<Color>.DarkViolet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FF1493.
|
|||
/// </summary>
|
|||
public static readonly Color DeepPink = NamedColors<Color>.DeepPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #00BFFF.
|
|||
/// </summary>
|
|||
public static readonly Color DeepSkyBlue = NamedColors<Color>.DeepSkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #696969.
|
|||
/// </summary>
|
|||
public static readonly Color DimGray = NamedColors<Color>.DimGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #1E90FF.
|
|||
/// </summary>
|
|||
public static readonly Color DodgerBlue = NamedColors<Color>.DodgerBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #B22222.
|
|||
/// </summary>
|
|||
public static readonly Color Firebrick = NamedColors<Color>.Firebrick; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFFAF0.
|
|||
/// </summary>
|
|||
public static readonly Color FloralWhite = NamedColors<Color>.FloralWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #228B22.
|
|||
/// </summary>
|
|||
public static readonly Color ForestGreen = NamedColors<Color>.ForestGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FF00FF.
|
|||
/// </summary>
|
|||
public static readonly Color Fuchsia = NamedColors<Color>.Fuchsia; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #DCDCDC.
|
|||
/// </summary>
|
|||
public static readonly Color Gainsboro = NamedColors<Color>.Gainsboro; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F8F8FF.
|
|||
/// </summary>
|
|||
public static readonly Color GhostWhite = NamedColors<Color>.GhostWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFD700.
|
|||
/// </summary>
|
|||
public static readonly Color Gold = NamedColors<Color>.Gold; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #DAA520.
|
|||
/// </summary>
|
|||
public static readonly Color Goldenrod = NamedColors<Color>.Goldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #808080.
|
|||
/// </summary>
|
|||
public static readonly Color Gray = NamedColors<Color>.Gray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #008000.
|
|||
/// </summary>
|
|||
public static readonly Color Green = NamedColors<Color>.Green; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #ADFF2F.
|
|||
/// </summary>
|
|||
public static readonly Color GreenYellow = NamedColors<Color>.GreenYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F0FFF0.
|
|||
/// </summary>
|
|||
public static readonly Color Honeydew = NamedColors<Color>.Honeydew; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FF69B4.
|
|||
/// </summary>
|
|||
public static readonly Color HotPink = NamedColors<Color>.HotPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #CD5C5C.
|
|||
/// </summary>
|
|||
public static readonly Color IndianRed = NamedColors<Color>.IndianRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #4B0082.
|
|||
/// </summary>
|
|||
public static readonly Color Indigo = NamedColors<Color>.Indigo; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFFFF0.
|
|||
/// </summary>
|
|||
public static readonly Color Ivory = NamedColors<Color>.Ivory; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F0E68C.
|
|||
/// </summary>
|
|||
public static readonly Color Khaki = NamedColors<Color>.Khaki; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #E6E6FA.
|
|||
/// </summary>
|
|||
public static readonly Color Lavender = NamedColors<Color>.Lavender; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFF0F5.
|
|||
/// </summary>
|
|||
public static readonly Color LavenderBlush = NamedColors<Color>.LavenderBlush; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #7CFC00.
|
|||
/// </summary>
|
|||
public static readonly Color LawnGreen = NamedColors<Color>.LawnGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFFACD.
|
|||
/// </summary>
|
|||
public static readonly Color LemonChiffon = NamedColors<Color>.LemonChiffon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #ADD8E6.
|
|||
/// </summary>
|
|||
public static readonly Color LightBlue = NamedColors<Color>.LightBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F08080.
|
|||
/// </summary>
|
|||
public static readonly Color LightCoral = NamedColors<Color>.LightCoral; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #E0FFFF.
|
|||
/// </summary>
|
|||
public static readonly Color LightCyan = NamedColors<Color>.LightCyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FAFAD2.
|
|||
/// </summary>
|
|||
public static readonly Color LightGoldenrodYellow = NamedColors<Color>.LightGoldenrodYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #D3D3D3.
|
|||
/// </summary>
|
|||
public static readonly Color LightGray = NamedColors<Color>.LightGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #90EE90.
|
|||
/// </summary>
|
|||
public static readonly Color LightGreen = NamedColors<Color>.LightGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFB6C1.
|
|||
/// </summary>
|
|||
public static readonly Color LightPink = NamedColors<Color>.LightPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFA07A.
|
|||
/// </summary>
|
|||
public static readonly Color LightSalmon = NamedColors<Color>.LightSalmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #20B2AA.
|
|||
/// </summary>
|
|||
public static readonly Color LightSeaGreen = NamedColors<Color>.LightSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #87CEFA.
|
|||
/// </summary>
|
|||
public static readonly Color LightSkyBlue = NamedColors<Color>.LightSkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #778899.
|
|||
/// </summary>
|
|||
public static readonly Color LightSlateGray = NamedColors<Color>.LightSlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #B0C4DE.
|
|||
/// </summary>
|
|||
public static readonly Color LightSteelBlue = NamedColors<Color>.LightSteelBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFFFE0.
|
|||
/// </summary>
|
|||
public static readonly Color LightYellow = NamedColors<Color>.LightYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #00FF00.
|
|||
/// </summary>
|
|||
public static readonly Color Lime = NamedColors<Color>.Lime; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #32CD32.
|
|||
/// </summary>
|
|||
public static readonly Color LimeGreen = NamedColors<Color>.LimeGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FAF0E6.
|
|||
/// </summary>
|
|||
public static readonly Color Linen = NamedColors<Color>.Linen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FF00FF.
|
|||
/// </summary>
|
|||
public static readonly Color Magenta = NamedColors<Color>.Magenta; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #800000.
|
|||
/// </summary>
|
|||
public static readonly Color Maroon = NamedColors<Color>.Maroon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #66CDAA.
|
|||
/// </summary>
|
|||
public static readonly Color MediumAquamarine = NamedColors<Color>.MediumAquamarine; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #0000CD.
|
|||
/// </summary>
|
|||
public static readonly Color MediumBlue = NamedColors<Color>.MediumBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #BA55D3.
|
|||
/// </summary>
|
|||
public static readonly Color MediumOrchid = NamedColors<Color>.MediumOrchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #9370DB.
|
|||
/// </summary>
|
|||
public static readonly Color MediumPurple = NamedColors<Color>.MediumPurple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #3CB371.
|
|||
/// </summary>
|
|||
public static readonly Color MediumSeaGreen = NamedColors<Color>.MediumSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #7B68EE.
|
|||
/// </summary>
|
|||
public static readonly Color MediumSlateBlue = NamedColors<Color>.MediumSlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #00FA9A.
|
|||
/// </summary>
|
|||
public static readonly Color MediumSpringGreen = NamedColors<Color>.MediumSpringGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #48D1CC.
|
|||
/// </summary>
|
|||
public static readonly Color MediumTurquoise = NamedColors<Color>.MediumTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #C71585.
|
|||
/// </summary>
|
|||
public static readonly Color MediumVioletRed = NamedColors<Color>.MediumVioletRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #191970.
|
|||
/// </summary>
|
|||
public static readonly Color MidnightBlue = NamedColors<Color>.MidnightBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F5FFFA.
|
|||
/// </summary>
|
|||
public static readonly Color MintCream = NamedColors<Color>.MintCream; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFE4E1.
|
|||
/// </summary>
|
|||
public static readonly Color MistyRose = NamedColors<Color>.MistyRose; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFE4B5.
|
|||
/// </summary>
|
|||
public static readonly Color Moccasin = NamedColors<Color>.Moccasin; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFDEAD.
|
|||
/// </summary>
|
|||
public static readonly Color NavajoWhite = NamedColors<Color>.NavajoWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #000080.
|
|||
/// </summary>
|
|||
public static readonly Color Navy = NamedColors<Color>.Navy; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FDF5E6.
|
|||
/// </summary>
|
|||
public static readonly Color OldLace = NamedColors<Color>.OldLace; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #808000.
|
|||
/// </summary>
|
|||
public static readonly Color Olive = NamedColors<Color>.Olive; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #6B8E23.
|
|||
/// </summary>
|
|||
public static readonly Color OliveDrab = NamedColors<Color>.OliveDrab; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFA500.
|
|||
/// </summary>
|
|||
public static readonly Color Orange = NamedColors<Color>.Orange; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FF4500.
|
|||
/// </summary>
|
|||
public static readonly Color OrangeRed = NamedColors<Color>.OrangeRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #DA70D6.
|
|||
/// </summary>
|
|||
public static readonly Color Orchid = NamedColors<Color>.Orchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #EEE8AA.
|
|||
/// </summary>
|
|||
public static readonly Color PaleGoldenrod = NamedColors<Color>.PaleGoldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #98FB98.
|
|||
/// </summary>
|
|||
public static readonly Color PaleGreen = NamedColors<Color>.PaleGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #AFEEEE.
|
|||
/// </summary>
|
|||
public static readonly Color PaleTurquoise = NamedColors<Color>.PaleTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #DB7093.
|
|||
/// </summary>
|
|||
public static readonly Color PaleVioletRed = NamedColors<Color>.PaleVioletRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFEFD5.
|
|||
/// </summary>
|
|||
public static readonly Color PapayaWhip = NamedColors<Color>.PapayaWhip; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFDAB9.
|
|||
/// </summary>
|
|||
public static readonly Color PeachPuff = NamedColors<Color>.PeachPuff; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #CD853F.
|
|||
/// </summary>
|
|||
public static readonly Color Peru = NamedColors<Color>.Peru; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFC0CB.
|
|||
/// </summary>
|
|||
public static readonly Color Pink = NamedColors<Color>.Pink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #DDA0DD.
|
|||
/// </summary>
|
|||
public static readonly Color Plum = NamedColors<Color>.Plum; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #B0E0E6.
|
|||
/// </summary>
|
|||
public static readonly Color PowderBlue = NamedColors<Color>.PowderBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #800080.
|
|||
/// </summary>
|
|||
public static readonly Color Purple = NamedColors<Color>.Purple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #663399.
|
|||
/// </summary>
|
|||
public static readonly Color RebeccaPurple = NamedColors<Color>.RebeccaPurple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FF0000.
|
|||
/// </summary>
|
|||
public static readonly Color Red = NamedColors<Color>.Red; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #BC8F8F.
|
|||
/// </summary>
|
|||
public static readonly Color RosyBrown = NamedColors<Color>.RosyBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #4169E1.
|
|||
/// </summary>
|
|||
public static readonly Color RoyalBlue = NamedColors<Color>.RoyalBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #8B4513.
|
|||
/// </summary>
|
|||
public static readonly Color SaddleBrown = NamedColors<Color>.SaddleBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FA8072.
|
|||
/// </summary>
|
|||
public static readonly Color Salmon = NamedColors<Color>.Salmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F4A460.
|
|||
/// </summary>
|
|||
public static readonly Color SandyBrown = NamedColors<Color>.SandyBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #2E8B57.
|
|||
/// </summary>
|
|||
public static readonly Color SeaGreen = NamedColors<Color>.SeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFF5EE.
|
|||
/// </summary>
|
|||
public static readonly Color SeaShell = NamedColors<Color>.SeaShell; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #A0522D.
|
|||
/// </summary>
|
|||
public static readonly Color Sienna = NamedColors<Color>.Sienna; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #C0C0C0.
|
|||
/// </summary>
|
|||
public static readonly Color Silver = NamedColors<Color>.Silver; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #87CEEB.
|
|||
/// </summary>
|
|||
public static readonly Color SkyBlue = NamedColors<Color>.SkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #6A5ACD.
|
|||
/// </summary>
|
|||
public static readonly Color SlateBlue = NamedColors<Color>.SlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #708090.
|
|||
/// </summary>
|
|||
public static readonly Color SlateGray = NamedColors<Color>.SlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFFAFA.
|
|||
/// </summary>
|
|||
public static readonly Color Snow = NamedColors<Color>.Snow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #00FF7F.
|
|||
/// </summary>
|
|||
public static readonly Color SpringGreen = NamedColors<Color>.SpringGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #4682B4.
|
|||
/// </summary>
|
|||
public static readonly Color SteelBlue = NamedColors<Color>.SteelBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #D2B48C.
|
|||
/// </summary>
|
|||
public static readonly Color Tan = NamedColors<Color>.Tan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #008080.
|
|||
/// </summary>
|
|||
public static readonly Color Teal = NamedColors<Color>.Teal; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #D8BFD8.
|
|||
/// </summary>
|
|||
public static readonly Color Thistle = NamedColors<Color>.Thistle; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FF6347.
|
|||
/// </summary>
|
|||
public static readonly Color Tomato = NamedColors<Color>.Tomato; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFFFFF.
|
|||
/// </summary>
|
|||
public static readonly Color Transparent = NamedColors<Color>.Transparent; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #40E0D0.
|
|||
/// </summary>
|
|||
public static readonly Color Turquoise = NamedColors<Color>.Turquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #EE82EE.
|
|||
/// </summary>
|
|||
public static readonly Color Violet = NamedColors<Color>.Violet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F5DEB3.
|
|||
/// </summary>
|
|||
public static readonly Color Wheat = NamedColors<Color>.Wheat; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFFFFF.
|
|||
/// </summary>
|
|||
public static readonly Color White = NamedColors<Color>.White; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #F5F5F5.
|
|||
/// </summary>
|
|||
public static readonly Color WhiteSmoke = NamedColors<Color>.WhiteSmoke; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #FFFF00.
|
|||
/// </summary>
|
|||
public static readonly Color Yellow = NamedColors<Color>.Yellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Color"/> matching the W3C definition that has an hex value of #9ACD32.
|
|||
/// </summary>
|
|||
public static readonly Color YellowGreen = NamedColors<Color>.YellowGreen; |
|||
} |
|||
} |
|||
@ -1,728 +0,0 @@ |
|||
// <copyright file="ColorVector.Definitions.cs" company="James Jackson-South">
|
|||
// Copyright (c) James Jackson-South and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
// </copyright>
|
|||
|
|||
namespace ImageSharp |
|||
{ |
|||
/// <summary>
|
|||
/// Unpacked pixel type containing four 16-bit floating-point values typically ranging from 0 to 1.
|
|||
/// The color components are stored in red, green, blue, and alpha order.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// This struct is fully mutable. This is done (against the guidelines) for the sake of performance,
|
|||
/// as it avoids the need to create new values for modification operations.
|
|||
/// </remarks>
|
|||
public partial struct ColorVector |
|||
{ |
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F0F8FF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector AliceBlue = NamedColors<ColorVector>.AliceBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FAEBD7.
|
|||
/// </summary>
|
|||
public static readonly ColorVector AntiqueWhite = NamedColors<ColorVector>.AntiqueWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #00FFFF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Aqua = NamedColors<ColorVector>.Aqua; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #7FFFD4.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Aquamarine = NamedColors<ColorVector>.Aquamarine; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F0FFFF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Azure = NamedColors<ColorVector>.Azure; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F5F5DC.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Beige = NamedColors<ColorVector>.Beige; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFE4C4.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Bisque = NamedColors<ColorVector>.Bisque; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #000000.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Black = NamedColors<ColorVector>.Black; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFEBCD.
|
|||
/// </summary>
|
|||
public static readonly ColorVector BlanchedAlmond = NamedColors<ColorVector>.BlanchedAlmond; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #0000FF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Blue = NamedColors<ColorVector>.Blue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #8A2BE2.
|
|||
/// </summary>
|
|||
public static readonly ColorVector BlueViolet = NamedColors<ColorVector>.BlueViolet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #A52A2A.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Brown = NamedColors<ColorVector>.Brown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #DEB887.
|
|||
/// </summary>
|
|||
public static readonly ColorVector BurlyWood = NamedColors<ColorVector>.BurlyWood; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #5F9EA0.
|
|||
/// </summary>
|
|||
public static readonly ColorVector CadetBlue = NamedColors<ColorVector>.CadetBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #7FFF00.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Chartreuse = NamedColors<ColorVector>.Chartreuse; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #D2691E.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Chocolate = NamedColors<ColorVector>.Chocolate; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FF7F50.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Coral = NamedColors<ColorVector>.Coral; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #6495ED.
|
|||
/// </summary>
|
|||
public static readonly ColorVector CornflowerBlue = NamedColors<ColorVector>.CornflowerBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFF8DC.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Cornsilk = NamedColors<ColorVector>.Cornsilk; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #DC143C.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Crimson = NamedColors<ColorVector>.Crimson; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #00FFFF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Cyan = NamedColors<ColorVector>.Cyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #00008B.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkBlue = NamedColors<ColorVector>.DarkBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #008B8B.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkCyan = NamedColors<ColorVector>.DarkCyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #B8860B.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkGoldenrod = NamedColors<ColorVector>.DarkGoldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #A9A9A9.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkGray = NamedColors<ColorVector>.DarkGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #006400.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkGreen = NamedColors<ColorVector>.DarkGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #BDB76B.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkKhaki = NamedColors<ColorVector>.DarkKhaki; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #8B008B.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkMagenta = NamedColors<ColorVector>.DarkMagenta; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #556B2F.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkOliveGreen = NamedColors<ColorVector>.DarkOliveGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FF8C00.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkOrange = NamedColors<ColorVector>.DarkOrange; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #9932CC.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkOrchid = NamedColors<ColorVector>.DarkOrchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #8B0000.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkRed = NamedColors<ColorVector>.DarkRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #E9967A.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkSalmon = NamedColors<ColorVector>.DarkSalmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #8FBC8B.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkSeaGreen = NamedColors<ColorVector>.DarkSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #483D8B.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkSlateBlue = NamedColors<ColorVector>.DarkSlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #2F4F4F.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkSlateGray = NamedColors<ColorVector>.DarkSlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #00CED1.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkTurquoise = NamedColors<ColorVector>.DarkTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #9400D3.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DarkViolet = NamedColors<ColorVector>.DarkViolet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FF1493.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DeepPink = NamedColors<ColorVector>.DeepPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #00BFFF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DeepSkyBlue = NamedColors<ColorVector>.DeepSkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #696969.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DimGray = NamedColors<ColorVector>.DimGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #1E90FF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector DodgerBlue = NamedColors<ColorVector>.DodgerBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #B22222.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Firebrick = NamedColors<ColorVector>.Firebrick; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFFAF0.
|
|||
/// </summary>
|
|||
public static readonly ColorVector FloralWhite = NamedColors<ColorVector>.FloralWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #228B22.
|
|||
/// </summary>
|
|||
public static readonly ColorVector ForestGreen = NamedColors<ColorVector>.ForestGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FF00FF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Fuchsia = NamedColors<ColorVector>.Fuchsia; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #DCDCDC.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Gainsboro = NamedColors<ColorVector>.Gainsboro; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F8F8FF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector GhostWhite = NamedColors<ColorVector>.GhostWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFD700.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Gold = NamedColors<ColorVector>.Gold; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #DAA520.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Goldenrod = NamedColors<ColorVector>.Goldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #808080.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Gray = NamedColors<ColorVector>.Gray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #008000.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Green = NamedColors<ColorVector>.Green; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #ADFF2F.
|
|||
/// </summary>
|
|||
public static readonly ColorVector GreenYellow = NamedColors<ColorVector>.GreenYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F0FFF0.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Honeydew = NamedColors<ColorVector>.Honeydew; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FF69B4.
|
|||
/// </summary>
|
|||
public static readonly ColorVector HotPink = NamedColors<ColorVector>.HotPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #CD5C5C.
|
|||
/// </summary>
|
|||
public static readonly ColorVector IndianRed = NamedColors<ColorVector>.IndianRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #4B0082.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Indigo = NamedColors<ColorVector>.Indigo; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFFFF0.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Ivory = NamedColors<ColorVector>.Ivory; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F0E68C.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Khaki = NamedColors<ColorVector>.Khaki; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #E6E6FA.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Lavender = NamedColors<ColorVector>.Lavender; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFF0F5.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LavenderBlush = NamedColors<ColorVector>.LavenderBlush; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #7CFC00.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LawnGreen = NamedColors<ColorVector>.LawnGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFFACD.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LemonChiffon = NamedColors<ColorVector>.LemonChiffon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #ADD8E6.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightBlue = NamedColors<ColorVector>.LightBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F08080.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightCoral = NamedColors<ColorVector>.LightCoral; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #E0FFFF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightCyan = NamedColors<ColorVector>.LightCyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FAFAD2.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightGoldenrodYellow = NamedColors<ColorVector>.LightGoldenrodYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #D3D3D3.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightGray = NamedColors<ColorVector>.LightGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #90EE90.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightGreen = NamedColors<ColorVector>.LightGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFB6C1.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightPink = NamedColors<ColorVector>.LightPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFA07A.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightSalmon = NamedColors<ColorVector>.LightSalmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #20B2AA.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightSeaGreen = NamedColors<ColorVector>.LightSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #87CEFA.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightSkyBlue = NamedColors<ColorVector>.LightSkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #778899.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightSlateGray = NamedColors<ColorVector>.LightSlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #B0C4DE.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightSteelBlue = NamedColors<ColorVector>.LightSteelBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFFFE0.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LightYellow = NamedColors<ColorVector>.LightYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #00FF00.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Lime = NamedColors<ColorVector>.Lime; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #32CD32.
|
|||
/// </summary>
|
|||
public static readonly ColorVector LimeGreen = NamedColors<ColorVector>.LimeGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FAF0E6.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Linen = NamedColors<ColorVector>.Linen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FF00FF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Magenta = NamedColors<ColorVector>.Magenta; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #800000.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Maroon = NamedColors<ColorVector>.Maroon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #66CDAA.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MediumAquamarine = NamedColors<ColorVector>.MediumAquamarine; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #0000CD.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MediumBlue = NamedColors<ColorVector>.MediumBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #BA55D3.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MediumOrchid = NamedColors<ColorVector>.MediumOrchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #9370DB.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MediumPurple = NamedColors<ColorVector>.MediumPurple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #3CB371.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MediumSeaGreen = NamedColors<ColorVector>.MediumSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #7B68EE.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MediumSlateBlue = NamedColors<ColorVector>.MediumSlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #00FA9A.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MediumSpringGreen = NamedColors<ColorVector>.MediumSpringGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #48D1CC.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MediumTurquoise = NamedColors<ColorVector>.MediumTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #C71585.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MediumVioletRed = NamedColors<ColorVector>.MediumVioletRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #191970.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MidnightBlue = NamedColors<ColorVector>.MidnightBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F5FFFA.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MintCream = NamedColors<ColorVector>.MintCream; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFE4E1.
|
|||
/// </summary>
|
|||
public static readonly ColorVector MistyRose = NamedColors<ColorVector>.MistyRose; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFE4B5.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Moccasin = NamedColors<ColorVector>.Moccasin; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFDEAD.
|
|||
/// </summary>
|
|||
public static readonly ColorVector NavajoWhite = NamedColors<ColorVector>.NavajoWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #000080.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Navy = NamedColors<ColorVector>.Navy; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FDF5E6.
|
|||
/// </summary>
|
|||
public static readonly ColorVector OldLace = NamedColors<ColorVector>.OldLace; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #808000.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Olive = NamedColors<ColorVector>.Olive; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #6B8E23.
|
|||
/// </summary>
|
|||
public static readonly ColorVector OliveDrab = NamedColors<ColorVector>.OliveDrab; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFA500.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Orange = NamedColors<ColorVector>.Orange; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FF4500.
|
|||
/// </summary>
|
|||
public static readonly ColorVector OrangeRed = NamedColors<ColorVector>.OrangeRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #DA70D6.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Orchid = NamedColors<ColorVector>.Orchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #EEE8AA.
|
|||
/// </summary>
|
|||
public static readonly ColorVector PaleGoldenrod = NamedColors<ColorVector>.PaleGoldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #98FB98.
|
|||
/// </summary>
|
|||
public static readonly ColorVector PaleGreen = NamedColors<ColorVector>.PaleGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #AFEEEE.
|
|||
/// </summary>
|
|||
public static readonly ColorVector PaleTurquoise = NamedColors<ColorVector>.PaleTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #DB7093.
|
|||
/// </summary>
|
|||
public static readonly ColorVector PaleVioletRed = NamedColors<ColorVector>.PaleVioletRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFEFD5.
|
|||
/// </summary>
|
|||
public static readonly ColorVector PapayaWhip = NamedColors<ColorVector>.PapayaWhip; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFDAB9.
|
|||
/// </summary>
|
|||
public static readonly ColorVector PeachPuff = NamedColors<ColorVector>.PeachPuff; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #CD853F.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Peru = NamedColors<ColorVector>.Peru; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFC0CB.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Pink = NamedColors<ColorVector>.Pink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #DDA0DD.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Plum = NamedColors<ColorVector>.Plum; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #B0E0E6.
|
|||
/// </summary>
|
|||
public static readonly ColorVector PowderBlue = NamedColors<ColorVector>.PowderBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #800080.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Purple = NamedColors<ColorVector>.Purple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #663399.
|
|||
/// </summary>
|
|||
public static readonly ColorVector RebeccaPurple = NamedColors<ColorVector>.RebeccaPurple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FF0000.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Red = NamedColors<ColorVector>.Red; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #BC8F8F.
|
|||
/// </summary>
|
|||
public static readonly ColorVector RosyBrown = NamedColors<ColorVector>.RosyBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #4169E1.
|
|||
/// </summary>
|
|||
public static readonly ColorVector RoyalBlue = NamedColors<ColorVector>.RoyalBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #8B4513.
|
|||
/// </summary>
|
|||
public static readonly ColorVector SaddleBrown = NamedColors<ColorVector>.SaddleBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FA8072.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Salmon = NamedColors<ColorVector>.Salmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F4A460.
|
|||
/// </summary>
|
|||
public static readonly ColorVector SandyBrown = NamedColors<ColorVector>.SandyBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #2E8B57.
|
|||
/// </summary>
|
|||
public static readonly ColorVector SeaGreen = NamedColors<ColorVector>.SeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFF5EE.
|
|||
/// </summary>
|
|||
public static readonly ColorVector SeaShell = NamedColors<ColorVector>.SeaShell; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #A0522D.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Sienna = NamedColors<ColorVector>.Sienna; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #C0C0C0.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Silver = NamedColors<ColorVector>.Silver; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #87CEEB.
|
|||
/// </summary>
|
|||
public static readonly ColorVector SkyBlue = NamedColors<ColorVector>.SkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #6A5ACD.
|
|||
/// </summary>
|
|||
public static readonly ColorVector SlateBlue = NamedColors<ColorVector>.SlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #708090.
|
|||
/// </summary>
|
|||
public static readonly ColorVector SlateGray = NamedColors<ColorVector>.SlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFFAFA.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Snow = NamedColors<ColorVector>.Snow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #00FF7F.
|
|||
/// </summary>
|
|||
public static readonly ColorVector SpringGreen = NamedColors<ColorVector>.SpringGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #4682B4.
|
|||
/// </summary>
|
|||
public static readonly ColorVector SteelBlue = NamedColors<ColorVector>.SteelBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #D2B48C.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Tan = NamedColors<ColorVector>.Tan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #008080.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Teal = NamedColors<ColorVector>.Teal; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #D8BFD8.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Thistle = NamedColors<ColorVector>.Thistle; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FF6347.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Tomato = NamedColors<ColorVector>.Tomato; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFFFFF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Transparent = NamedColors<ColorVector>.Transparent; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #40E0D0.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Turquoise = NamedColors<ColorVector>.Turquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #EE82EE.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Violet = NamedColors<ColorVector>.Violet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F5DEB3.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Wheat = NamedColors<ColorVector>.Wheat; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFFFFF.
|
|||
/// </summary>
|
|||
public static readonly ColorVector White = NamedColors<ColorVector>.White; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #F5F5F5.
|
|||
/// </summary>
|
|||
public static readonly ColorVector WhiteSmoke = NamedColors<ColorVector>.WhiteSmoke; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #FFFF00.
|
|||
/// </summary>
|
|||
public static readonly ColorVector Yellow = NamedColors<ColorVector>.Yellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="ColorVector"/> matching the W3C definition that has an hex value of #9ACD32.
|
|||
/// </summary>
|
|||
public static readonly ColorVector YellowGreen = NamedColors<ColorVector>.YellowGreen; |
|||
} |
|||
} |
|||
@ -0,0 +1,728 @@ |
|||
// <copyright file="Rgba32.Definitions.cs" company="James Jackson-South">
|
|||
// Copyright (c) James Jackson-South and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
// </copyright>
|
|||
|
|||
namespace ImageSharp |
|||
{ |
|||
/// <summary>
|
|||
/// Packed vector type containing four 8-bit unsigned normalized values ranging from 0 to 255.
|
|||
/// The color components are stored in red, green, blue, and alpha order.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// This struct is fully mutable. This is done (against the guidelines) for the sake of performance,
|
|||
/// as it avoids the need to create new values for modification operations.
|
|||
/// </remarks>
|
|||
public partial struct Rgba32 |
|||
{ |
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F0F8FF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 AliceBlue = NamedColors<Rgba32>.AliceBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FAEBD7.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 AntiqueWhite = NamedColors<Rgba32>.AntiqueWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #00FFFF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Aqua = NamedColors<Rgba32>.Aqua; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #7FFFD4.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Aquamarine = NamedColors<Rgba32>.Aquamarine; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F0FFFF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Azure = NamedColors<Rgba32>.Azure; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F5F5DC.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Beige = NamedColors<Rgba32>.Beige; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFE4C4.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Bisque = NamedColors<Rgba32>.Bisque; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #000000.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Black = NamedColors<Rgba32>.Black; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFEBCD.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 BlanchedAlmond = NamedColors<Rgba32>.BlanchedAlmond; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #0000FF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Blue = NamedColors<Rgba32>.Blue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #8A2BE2.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 BlueViolet = NamedColors<Rgba32>.BlueViolet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #A52A2A.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Brown = NamedColors<Rgba32>.Brown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #DEB887.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 BurlyWood = NamedColors<Rgba32>.BurlyWood; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #5F9EA0.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 CadetBlue = NamedColors<Rgba32>.CadetBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #7FFF00.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Chartreuse = NamedColors<Rgba32>.Chartreuse; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #D2691E.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Chocolate = NamedColors<Rgba32>.Chocolate; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FF7F50.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Coral = NamedColors<Rgba32>.Coral; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #6495ED.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 CornflowerBlue = NamedColors<Rgba32>.CornflowerBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFF8DC.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Cornsilk = NamedColors<Rgba32>.Cornsilk; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #DC143C.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Crimson = NamedColors<Rgba32>.Crimson; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #00FFFF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Cyan = NamedColors<Rgba32>.Cyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #00008B.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkBlue = NamedColors<Rgba32>.DarkBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #008B8B.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkCyan = NamedColors<Rgba32>.DarkCyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #B8860B.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkGoldenrod = NamedColors<Rgba32>.DarkGoldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #A9A9A9.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkGray = NamedColors<Rgba32>.DarkGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #006400.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkGreen = NamedColors<Rgba32>.DarkGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #BDB76B.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkKhaki = NamedColors<Rgba32>.DarkKhaki; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #8B008B.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkMagenta = NamedColors<Rgba32>.DarkMagenta; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #556B2F.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkOliveGreen = NamedColors<Rgba32>.DarkOliveGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FF8C00.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkOrange = NamedColors<Rgba32>.DarkOrange; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #9932CC.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkOrchid = NamedColors<Rgba32>.DarkOrchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #8B0000.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkRed = NamedColors<Rgba32>.DarkRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #E9967A.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkSalmon = NamedColors<Rgba32>.DarkSalmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #8FBC8B.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkSeaGreen = NamedColors<Rgba32>.DarkSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #483D8B.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkSlateBlue = NamedColors<Rgba32>.DarkSlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #2F4F4F.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkSlateGray = NamedColors<Rgba32>.DarkSlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #00CED1.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkTurquoise = NamedColors<Rgba32>.DarkTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #9400D3.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DarkViolet = NamedColors<Rgba32>.DarkViolet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FF1493.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DeepPink = NamedColors<Rgba32>.DeepPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #00BFFF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DeepSkyBlue = NamedColors<Rgba32>.DeepSkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #696969.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DimGray = NamedColors<Rgba32>.DimGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #1E90FF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 DodgerBlue = NamedColors<Rgba32>.DodgerBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #B22222.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Firebrick = NamedColors<Rgba32>.Firebrick; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFFAF0.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 FloralWhite = NamedColors<Rgba32>.FloralWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #228B22.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 ForestGreen = NamedColors<Rgba32>.ForestGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FF00FF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Fuchsia = NamedColors<Rgba32>.Fuchsia; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #DCDCDC.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Gainsboro = NamedColors<Rgba32>.Gainsboro; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F8F8FF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 GhostWhite = NamedColors<Rgba32>.GhostWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFD700.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Gold = NamedColors<Rgba32>.Gold; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #DAA520.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Goldenrod = NamedColors<Rgba32>.Goldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #808080.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Gray = NamedColors<Rgba32>.Gray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #008000.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Green = NamedColors<Rgba32>.Green; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #ADFF2F.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 GreenYellow = NamedColors<Rgba32>.GreenYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F0FFF0.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Honeydew = NamedColors<Rgba32>.Honeydew; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FF69B4.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 HotPink = NamedColors<Rgba32>.HotPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #CD5C5C.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 IndianRed = NamedColors<Rgba32>.IndianRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #4B0082.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Indigo = NamedColors<Rgba32>.Indigo; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFFFF0.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Ivory = NamedColors<Rgba32>.Ivory; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F0E68C.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Khaki = NamedColors<Rgba32>.Khaki; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #E6E6FA.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Lavender = NamedColors<Rgba32>.Lavender; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFF0F5.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LavenderBlush = NamedColors<Rgba32>.LavenderBlush; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #7CFC00.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LawnGreen = NamedColors<Rgba32>.LawnGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFFACD.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LemonChiffon = NamedColors<Rgba32>.LemonChiffon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #ADD8E6.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightBlue = NamedColors<Rgba32>.LightBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F08080.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightCoral = NamedColors<Rgba32>.LightCoral; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #E0FFFF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightCyan = NamedColors<Rgba32>.LightCyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FAFAD2.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightGoldenrodYellow = NamedColors<Rgba32>.LightGoldenrodYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #D3D3D3.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightGray = NamedColors<Rgba32>.LightGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #90EE90.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightGreen = NamedColors<Rgba32>.LightGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFB6C1.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightPink = NamedColors<Rgba32>.LightPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFA07A.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightSalmon = NamedColors<Rgba32>.LightSalmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #20B2AA.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightSeaGreen = NamedColors<Rgba32>.LightSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #87CEFA.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightSkyBlue = NamedColors<Rgba32>.LightSkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #778899.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightSlateGray = NamedColors<Rgba32>.LightSlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #B0C4DE.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightSteelBlue = NamedColors<Rgba32>.LightSteelBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFFFE0.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LightYellow = NamedColors<Rgba32>.LightYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #00FF00.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Lime = NamedColors<Rgba32>.Lime; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #32CD32.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 LimeGreen = NamedColors<Rgba32>.LimeGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FAF0E6.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Linen = NamedColors<Rgba32>.Linen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FF00FF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Magenta = NamedColors<Rgba32>.Magenta; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #800000.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Maroon = NamedColors<Rgba32>.Maroon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #66CDAA.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MediumAquamarine = NamedColors<Rgba32>.MediumAquamarine; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #0000CD.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MediumBlue = NamedColors<Rgba32>.MediumBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #BA55D3.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MediumOrchid = NamedColors<Rgba32>.MediumOrchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #9370DB.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MediumPurple = NamedColors<Rgba32>.MediumPurple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #3CB371.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MediumSeaGreen = NamedColors<Rgba32>.MediumSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #7B68EE.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MediumSlateBlue = NamedColors<Rgba32>.MediumSlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #00FA9A.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MediumSpringGreen = NamedColors<Rgba32>.MediumSpringGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #48D1CC.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MediumTurquoise = NamedColors<Rgba32>.MediumTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #C71585.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MediumVioletRed = NamedColors<Rgba32>.MediumVioletRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #191970.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MidnightBlue = NamedColors<Rgba32>.MidnightBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F5FFFA.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MintCream = NamedColors<Rgba32>.MintCream; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFE4E1.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 MistyRose = NamedColors<Rgba32>.MistyRose; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFE4B5.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Moccasin = NamedColors<Rgba32>.Moccasin; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFDEAD.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 NavajoWhite = NamedColors<Rgba32>.NavajoWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #000080.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Navy = NamedColors<Rgba32>.Navy; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FDF5E6.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 OldLace = NamedColors<Rgba32>.OldLace; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #808000.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Olive = NamedColors<Rgba32>.Olive; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #6B8E23.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 OliveDrab = NamedColors<Rgba32>.OliveDrab; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFA500.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Orange = NamedColors<Rgba32>.Orange; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FF4500.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 OrangeRed = NamedColors<Rgba32>.OrangeRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #DA70D6.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Orchid = NamedColors<Rgba32>.Orchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #EEE8AA.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 PaleGoldenrod = NamedColors<Rgba32>.PaleGoldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #98FB98.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 PaleGreen = NamedColors<Rgba32>.PaleGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #AFEEEE.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 PaleTurquoise = NamedColors<Rgba32>.PaleTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #DB7093.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 PaleVioletRed = NamedColors<Rgba32>.PaleVioletRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFEFD5.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 PapayaWhip = NamedColors<Rgba32>.PapayaWhip; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFDAB9.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 PeachPuff = NamedColors<Rgba32>.PeachPuff; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #CD853F.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Peru = NamedColors<Rgba32>.Peru; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFC0CB.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Pink = NamedColors<Rgba32>.Pink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #DDA0DD.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Plum = NamedColors<Rgba32>.Plum; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #B0E0E6.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 PowderBlue = NamedColors<Rgba32>.PowderBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #800080.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Purple = NamedColors<Rgba32>.Purple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #663399.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 RebeccaPurple = NamedColors<Rgba32>.RebeccaPurple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FF0000.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Red = NamedColors<Rgba32>.Red; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #BC8F8F.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 RosyBrown = NamedColors<Rgba32>.RosyBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #4169E1.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 RoyalBlue = NamedColors<Rgba32>.RoyalBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #8B4513.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 SaddleBrown = NamedColors<Rgba32>.SaddleBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FA8072.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Salmon = NamedColors<Rgba32>.Salmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F4A460.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 SandyBrown = NamedColors<Rgba32>.SandyBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #2E8B57.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 SeaGreen = NamedColors<Rgba32>.SeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFF5EE.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 SeaShell = NamedColors<Rgba32>.SeaShell; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #A0522D.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Sienna = NamedColors<Rgba32>.Sienna; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #C0C0C0.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Silver = NamedColors<Rgba32>.Silver; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #87CEEB.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 SkyBlue = NamedColors<Rgba32>.SkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #6A5ACD.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 SlateBlue = NamedColors<Rgba32>.SlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #708090.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 SlateGray = NamedColors<Rgba32>.SlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFFAFA.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Snow = NamedColors<Rgba32>.Snow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #00FF7F.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 SpringGreen = NamedColors<Rgba32>.SpringGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #4682B4.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 SteelBlue = NamedColors<Rgba32>.SteelBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #D2B48C.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Tan = NamedColors<Rgba32>.Tan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #008080.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Teal = NamedColors<Rgba32>.Teal; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #D8BFD8.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Thistle = NamedColors<Rgba32>.Thistle; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FF6347.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Tomato = NamedColors<Rgba32>.Tomato; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFFFFF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Transparent = NamedColors<Rgba32>.Transparent; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #40E0D0.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Turquoise = NamedColors<Rgba32>.Turquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #EE82EE.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Violet = NamedColors<Rgba32>.Violet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F5DEB3.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Wheat = NamedColors<Rgba32>.Wheat; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFFFFF.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 White = NamedColors<Rgba32>.White; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #F5F5F5.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 WhiteSmoke = NamedColors<Rgba32>.WhiteSmoke; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #FFFF00.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 Yellow = NamedColors<Rgba32>.Yellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="Rgba32"/> matching the W3C definition that has an hex value of #9ACD32.
|
|||
/// </summary>
|
|||
public static readonly Rgba32 YellowGreen = NamedColors<Rgba32>.YellowGreen; |
|||
} |
|||
} |
|||
@ -0,0 +1,728 @@ |
|||
// <copyright file="RgbaVector.Definitions.cs" company="James Jackson-South">
|
|||
// Copyright (c) James Jackson-South and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
// </copyright>
|
|||
|
|||
namespace ImageSharp |
|||
{ |
|||
/// <summary>
|
|||
/// Unpacked pixel type containing four 16-bit floating-point values typically ranging from 0 to 1.
|
|||
/// The color components are stored in red, green, blue, and alpha order.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// This struct is fully mutable. This is done (against the guidelines) for the sake of performance,
|
|||
/// as it avoids the need to create new values for modification operations.
|
|||
/// </remarks>
|
|||
public partial struct RgbaVector |
|||
{ |
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F0F8FF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector AliceBlue = NamedColors<RgbaVector>.AliceBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FAEBD7.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector AntiqueWhite = NamedColors<RgbaVector>.AntiqueWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #00FFFF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Aqua = NamedColors<RgbaVector>.Aqua; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #7FFFD4.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Aquamarine = NamedColors<RgbaVector>.Aquamarine; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F0FFFF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Azure = NamedColors<RgbaVector>.Azure; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F5F5DC.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Beige = NamedColors<RgbaVector>.Beige; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFE4C4.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Bisque = NamedColors<RgbaVector>.Bisque; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #000000.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Black = NamedColors<RgbaVector>.Black; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFEBCD.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector BlanchedAlmond = NamedColors<RgbaVector>.BlanchedAlmond; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #0000FF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Blue = NamedColors<RgbaVector>.Blue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #8A2BE2.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector BlueViolet = NamedColors<RgbaVector>.BlueViolet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #A52A2A.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Brown = NamedColors<RgbaVector>.Brown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #DEB887.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector BurlyWood = NamedColors<RgbaVector>.BurlyWood; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #5F9EA0.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector CadetBlue = NamedColors<RgbaVector>.CadetBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #7FFF00.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Chartreuse = NamedColors<RgbaVector>.Chartreuse; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #D2691E.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Chocolate = NamedColors<RgbaVector>.Chocolate; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FF7F50.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Coral = NamedColors<RgbaVector>.Coral; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #6495ED.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector CornflowerBlue = NamedColors<RgbaVector>.CornflowerBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFF8DC.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Cornsilk = NamedColors<RgbaVector>.Cornsilk; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #DC143C.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Crimson = NamedColors<RgbaVector>.Crimson; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #00FFFF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Cyan = NamedColors<RgbaVector>.Cyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #00008B.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkBlue = NamedColors<RgbaVector>.DarkBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #008B8B.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkCyan = NamedColors<RgbaVector>.DarkCyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #B8860B.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkGoldenrod = NamedColors<RgbaVector>.DarkGoldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #A9A9A9.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkGray = NamedColors<RgbaVector>.DarkGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #006400.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkGreen = NamedColors<RgbaVector>.DarkGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #BDB76B.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkKhaki = NamedColors<RgbaVector>.DarkKhaki; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #8B008B.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkMagenta = NamedColors<RgbaVector>.DarkMagenta; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #556B2F.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkOliveGreen = NamedColors<RgbaVector>.DarkOliveGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FF8C00.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkOrange = NamedColors<RgbaVector>.DarkOrange; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #9932CC.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkOrchid = NamedColors<RgbaVector>.DarkOrchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #8B0000.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkRed = NamedColors<RgbaVector>.DarkRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #E9967A.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkSalmon = NamedColors<RgbaVector>.DarkSalmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #8FBC8B.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkSeaGreen = NamedColors<RgbaVector>.DarkSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #483D8B.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkSlateBlue = NamedColors<RgbaVector>.DarkSlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #2F4F4F.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkSlateGray = NamedColors<RgbaVector>.DarkSlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #00CED1.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkTurquoise = NamedColors<RgbaVector>.DarkTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #9400D3.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DarkViolet = NamedColors<RgbaVector>.DarkViolet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FF1493.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DeepPink = NamedColors<RgbaVector>.DeepPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #00BFFF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DeepSkyBlue = NamedColors<RgbaVector>.DeepSkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #696969.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DimGray = NamedColors<RgbaVector>.DimGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #1E90FF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector DodgerBlue = NamedColors<RgbaVector>.DodgerBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #B22222.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Firebrick = NamedColors<RgbaVector>.Firebrick; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFFAF0.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector FloralWhite = NamedColors<RgbaVector>.FloralWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #228B22.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector ForestGreen = NamedColors<RgbaVector>.ForestGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FF00FF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Fuchsia = NamedColors<RgbaVector>.Fuchsia; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #DCDCDC.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Gainsboro = NamedColors<RgbaVector>.Gainsboro; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F8F8FF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector GhostWhite = NamedColors<RgbaVector>.GhostWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFD700.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Gold = NamedColors<RgbaVector>.Gold; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #DAA520.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Goldenrod = NamedColors<RgbaVector>.Goldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #808080.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Gray = NamedColors<RgbaVector>.Gray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #008000.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Green = NamedColors<RgbaVector>.Green; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #ADFF2F.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector GreenYellow = NamedColors<RgbaVector>.GreenYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F0FFF0.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Honeydew = NamedColors<RgbaVector>.Honeydew; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FF69B4.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector HotPink = NamedColors<RgbaVector>.HotPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #CD5C5C.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector IndianRed = NamedColors<RgbaVector>.IndianRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #4B0082.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Indigo = NamedColors<RgbaVector>.Indigo; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFFFF0.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Ivory = NamedColors<RgbaVector>.Ivory; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F0E68C.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Khaki = NamedColors<RgbaVector>.Khaki; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #E6E6FA.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Lavender = NamedColors<RgbaVector>.Lavender; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFF0F5.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LavenderBlush = NamedColors<RgbaVector>.LavenderBlush; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #7CFC00.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LawnGreen = NamedColors<RgbaVector>.LawnGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFFACD.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LemonChiffon = NamedColors<RgbaVector>.LemonChiffon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #ADD8E6.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightBlue = NamedColors<RgbaVector>.LightBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F08080.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightCoral = NamedColors<RgbaVector>.LightCoral; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #E0FFFF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightCyan = NamedColors<RgbaVector>.LightCyan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FAFAD2.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightGoldenrodYellow = NamedColors<RgbaVector>.LightGoldenrodYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #D3D3D3.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightGray = NamedColors<RgbaVector>.LightGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #90EE90.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightGreen = NamedColors<RgbaVector>.LightGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFB6C1.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightPink = NamedColors<RgbaVector>.LightPink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFA07A.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightSalmon = NamedColors<RgbaVector>.LightSalmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #20B2AA.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightSeaGreen = NamedColors<RgbaVector>.LightSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #87CEFA.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightSkyBlue = NamedColors<RgbaVector>.LightSkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #778899.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightSlateGray = NamedColors<RgbaVector>.LightSlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #B0C4DE.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightSteelBlue = NamedColors<RgbaVector>.LightSteelBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFFFE0.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LightYellow = NamedColors<RgbaVector>.LightYellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #00FF00.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Lime = NamedColors<RgbaVector>.Lime; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #32CD32.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector LimeGreen = NamedColors<RgbaVector>.LimeGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FAF0E6.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Linen = NamedColors<RgbaVector>.Linen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FF00FF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Magenta = NamedColors<RgbaVector>.Magenta; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #800000.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Maroon = NamedColors<RgbaVector>.Maroon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #66CDAA.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MediumAquamarine = NamedColors<RgbaVector>.MediumAquamarine; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #0000CD.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MediumBlue = NamedColors<RgbaVector>.MediumBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #BA55D3.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MediumOrchid = NamedColors<RgbaVector>.MediumOrchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #9370DB.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MediumPurple = NamedColors<RgbaVector>.MediumPurple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #3CB371.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MediumSeaGreen = NamedColors<RgbaVector>.MediumSeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #7B68EE.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MediumSlateBlue = NamedColors<RgbaVector>.MediumSlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #00FA9A.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MediumSpringGreen = NamedColors<RgbaVector>.MediumSpringGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #48D1CC.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MediumTurquoise = NamedColors<RgbaVector>.MediumTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #C71585.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MediumVioletRed = NamedColors<RgbaVector>.MediumVioletRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #191970.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MidnightBlue = NamedColors<RgbaVector>.MidnightBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F5FFFA.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MintCream = NamedColors<RgbaVector>.MintCream; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFE4E1.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector MistyRose = NamedColors<RgbaVector>.MistyRose; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFE4B5.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Moccasin = NamedColors<RgbaVector>.Moccasin; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFDEAD.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector NavajoWhite = NamedColors<RgbaVector>.NavajoWhite; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #000080.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Navy = NamedColors<RgbaVector>.Navy; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FDF5E6.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector OldLace = NamedColors<RgbaVector>.OldLace; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #808000.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Olive = NamedColors<RgbaVector>.Olive; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #6B8E23.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector OliveDrab = NamedColors<RgbaVector>.OliveDrab; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFA500.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Orange = NamedColors<RgbaVector>.Orange; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FF4500.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector OrangeRed = NamedColors<RgbaVector>.OrangeRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #DA70D6.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Orchid = NamedColors<RgbaVector>.Orchid; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #EEE8AA.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector PaleGoldenrod = NamedColors<RgbaVector>.PaleGoldenrod; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #98FB98.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector PaleGreen = NamedColors<RgbaVector>.PaleGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #AFEEEE.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector PaleTurquoise = NamedColors<RgbaVector>.PaleTurquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #DB7093.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector PaleVioletRed = NamedColors<RgbaVector>.PaleVioletRed; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFEFD5.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector PapayaWhip = NamedColors<RgbaVector>.PapayaWhip; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFDAB9.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector PeachPuff = NamedColors<RgbaVector>.PeachPuff; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #CD853F.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Peru = NamedColors<RgbaVector>.Peru; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFC0CB.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Pink = NamedColors<RgbaVector>.Pink; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #DDA0DD.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Plum = NamedColors<RgbaVector>.Plum; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #B0E0E6.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector PowderBlue = NamedColors<RgbaVector>.PowderBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #800080.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Purple = NamedColors<RgbaVector>.Purple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #663399.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector RebeccaPurple = NamedColors<RgbaVector>.RebeccaPurple; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FF0000.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Red = NamedColors<RgbaVector>.Red; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #BC8F8F.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector RosyBrown = NamedColors<RgbaVector>.RosyBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #4169E1.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector RoyalBlue = NamedColors<RgbaVector>.RoyalBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #8B4513.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector SaddleBrown = NamedColors<RgbaVector>.SaddleBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FA8072.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Salmon = NamedColors<RgbaVector>.Salmon; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F4A460.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector SandyBrown = NamedColors<RgbaVector>.SandyBrown; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #2E8B57.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector SeaGreen = NamedColors<RgbaVector>.SeaGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFF5EE.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector SeaShell = NamedColors<RgbaVector>.SeaShell; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #A0522D.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Sienna = NamedColors<RgbaVector>.Sienna; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #C0C0C0.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Silver = NamedColors<RgbaVector>.Silver; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #87CEEB.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector SkyBlue = NamedColors<RgbaVector>.SkyBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #6A5ACD.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector SlateBlue = NamedColors<RgbaVector>.SlateBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #708090.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector SlateGray = NamedColors<RgbaVector>.SlateGray; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFFAFA.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Snow = NamedColors<RgbaVector>.Snow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #00FF7F.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector SpringGreen = NamedColors<RgbaVector>.SpringGreen; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #4682B4.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector SteelBlue = NamedColors<RgbaVector>.SteelBlue; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #D2B48C.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Tan = NamedColors<RgbaVector>.Tan; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #008080.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Teal = NamedColors<RgbaVector>.Teal; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #D8BFD8.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Thistle = NamedColors<RgbaVector>.Thistle; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FF6347.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Tomato = NamedColors<RgbaVector>.Tomato; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFFFFF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Transparent = NamedColors<RgbaVector>.Transparent; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #40E0D0.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Turquoise = NamedColors<RgbaVector>.Turquoise; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #EE82EE.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Violet = NamedColors<RgbaVector>.Violet; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F5DEB3.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Wheat = NamedColors<RgbaVector>.Wheat; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFFFFF.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector White = NamedColors<RgbaVector>.White; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #F5F5F5.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector WhiteSmoke = NamedColors<RgbaVector>.WhiteSmoke; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #FFFF00.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector Yellow = NamedColors<RgbaVector>.Yellow; |
|||
|
|||
/// <summary>
|
|||
/// Represents a <see cref="RgbaVector"/> matching the W3C definition that has an hex value of #9ACD32.
|
|||
/// </summary>
|
|||
public static readonly RgbaVector YellowGreen = NamedColors<RgbaVector>.YellowGreen; |
|||
} |
|||
} |
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue