Patrik Svensson 5267ebda49 Get color names from lookup table
Also adds tests for Color struct and fixes a bug
that had to do with equality.
2020-08-03 11:32:17 +02:00

1352 lines
50 KiB
C#

using System.Diagnostics.CodeAnalysis;
namespace Spectre.Console
{
/// <summary>
/// Represents a color.
/// </summary>
public partial struct Color
{
internal Color(byte number, byte red, byte green, byte blue, bool isDefault = false)
: this(red, green, blue)
{
Number = number;
IsDefault = isDefault;
}
/// <summary>
/// Gets the color "Black" (RGB 0,0,0).
/// </summary>
public static Color Black { get; } = new Color(0, 0, 0, 0);
/// <summary>
/// Gets the color "Maroon" (RGB 128,0,0).
/// </summary>
public static Color Maroon { get; } = new Color(1, 128, 0, 0);
/// <summary>
/// Gets the color "Green" (RGB 0,128,0).
/// </summary>
public static Color Green { get; } = new Color(2, 0, 128, 0);
/// <summary>
/// Gets the color "Olive" (RGB 128,128,0).
/// </summary>
public static Color Olive { get; } = new Color(3, 128, 128, 0);
/// <summary>
/// Gets the color "Navy" (RGB 0,0,128).
/// </summary>
public static Color Navy { get; } = new Color(4, 0, 0, 128);
/// <summary>
/// Gets the color "Purple" (RGB 128,0,128).
/// </summary>
public static Color Purple { get; } = new Color(5, 128, 0, 128);
/// <summary>
/// Gets the color "Teal" (RGB 0,128,128).
/// </summary>
public static Color Teal { get; } = new Color(6, 0, 128, 128);
/// <summary>
/// Gets the color "Silver" (RGB 192,192,192).
/// </summary>
public static Color Silver { get; } = new Color(7, 192, 192, 192);
/// <summary>
/// Gets the color "Grey" (RGB 128,128,128).
/// </summary>
public static Color Grey { get; } = new Color(8, 128, 128, 128);
/// <summary>
/// Gets the color "Red" (RGB 255,0,0).
/// </summary>
public static Color Red { get; } = new Color(9, 255, 0, 0);
/// <summary>
/// Gets the color "Lime" (RGB 0,255,0).
/// </summary>
public static Color Lime { get; } = new Color(10, 0, 255, 0);
/// <summary>
/// Gets the color "Yellow" (RGB 255,255,0).
/// </summary>
public static Color Yellow { get; } = new Color(11, 255, 255, 0);
/// <summary>
/// Gets the color "Blue" (RGB 0,0,255).
/// </summary>
public static Color Blue { get; } = new Color(12, 0, 0, 255);
/// <summary>
/// Gets the color "Fuchsia" (RGB 255,0,255).
/// </summary>
public static Color Fuchsia { get; } = new Color(13, 255, 0, 255);
/// <summary>
/// Gets the color "Aqua" (RGB 0,255,255).
/// </summary>
public static Color Aqua { get; } = new Color(14, 0, 255, 255);
/// <summary>
/// Gets the color "White" (RGB 255,255,255).
/// </summary>
public static Color White { get; } = new Color(15, 255, 255, 255);
/// <summary>
/// Gets the color "Grey0" (RGB 0,0,0).
/// </summary>
public static Color Grey0 { get; } = new Color(16, 0, 0, 0);
/// <summary>
/// Gets the color "NavyBlue" (RGB 0,0,95).
/// </summary>
public static Color NavyBlue { get; } = new Color(17, 0, 0, 95);
/// <summary>
/// Gets the color "DarkBlue" (RGB 0,0,135).
/// </summary>
public static Color DarkBlue { get; } = new Color(18, 0, 0, 135);
/// <summary>
/// Gets the color "Blue3" (RGB 0,0,175).
/// </summary>
public static Color Blue3 { get; } = new Color(19, 0, 0, 175);
/// <summary>
/// Gets the color "Blue3_1" (RGB 0,0,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Blue3_1 { get; } = new Color(20, 0, 0, 215);
/// <summary>
/// Gets the color "Blue1" (RGB 0,0,255).
/// </summary>
public static Color Blue1 { get; } = new Color(21, 0, 0, 255);
/// <summary>
/// Gets the color "DarkGreen" (RGB 0,95,0).
/// </summary>
public static Color DarkGreen { get; } = new Color(22, 0, 95, 0);
/// <summary>
/// Gets the color "DeepSkyBlue4" (RGB 0,95,95).
/// </summary>
public static Color DeepSkyBlue4 { get; } = new Color(23, 0, 95, 95);
/// <summary>
/// Gets the color "DeepSkyBlue4_1" (RGB 0,95,135).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DeepSkyBlue4_1 { get; } = new Color(24, 0, 95, 135);
/// <summary>
/// Gets the color "DeepSkyBlue4_2" (RGB 0,95,175).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DeepSkyBlue4_2 { get; } = new Color(25, 0, 95, 175);
/// <summary>
/// Gets the color "DodgerBlue3" (RGB 0,95,215).
/// </summary>
public static Color DodgerBlue3 { get; } = new Color(26, 0, 95, 215);
/// <summary>
/// Gets the color "DodgerBlue2" (RGB 0,95,255).
/// </summary>
public static Color DodgerBlue2 { get; } = new Color(27, 0, 95, 255);
/// <summary>
/// Gets the color "Green4" (RGB 0,135,0).
/// </summary>
public static Color Green4 { get; } = new Color(28, 0, 135, 0);
/// <summary>
/// Gets the color "SpringGreen4" (RGB 0,135,95).
/// </summary>
public static Color SpringGreen4 { get; } = new Color(29, 0, 135, 95);
/// <summary>
/// Gets the color "Turquoise4" (RGB 0,135,135).
/// </summary>
public static Color Turquoise4 { get; } = new Color(30, 0, 135, 135);
/// <summary>
/// Gets the color "DeepSkyBlue3" (RGB 0,135,175).
/// </summary>
public static Color DeepSkyBlue3 { get; } = new Color(31, 0, 135, 175);
/// <summary>
/// Gets the color "DeepSkyBlue3_1" (RGB 0,135,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DeepSkyBlue3_1 { get; } = new Color(32, 0, 135, 215);
/// <summary>
/// Gets the color "DodgerBlue1" (RGB 0,135,255).
/// </summary>
public static Color DodgerBlue1 { get; } = new Color(33, 0, 135, 255);
/// <summary>
/// Gets the color "Green3" (RGB 0,175,0).
/// </summary>
public static Color Green3 { get; } = new Color(34, 0, 175, 0);
/// <summary>
/// Gets the color "SpringGreen3" (RGB 0,175,95).
/// </summary>
public static Color SpringGreen3 { get; } = new Color(35, 0, 175, 95);
/// <summary>
/// Gets the color "DarkCyan" (RGB 0,175,135).
/// </summary>
public static Color DarkCyan { get; } = new Color(36, 0, 175, 135);
/// <summary>
/// Gets the color "LightSeaGreen" (RGB 0,175,175).
/// </summary>
public static Color LightSeaGreen { get; } = new Color(37, 0, 175, 175);
/// <summary>
/// Gets the color "DeepSkyBlue2" (RGB 0,175,215).
/// </summary>
public static Color DeepSkyBlue2 { get; } = new Color(38, 0, 175, 215);
/// <summary>
/// Gets the color "DeepSkyBlue1" (RGB 0,175,255).
/// </summary>
public static Color DeepSkyBlue1 { get; } = new Color(39, 0, 175, 255);
/// <summary>
/// Gets the color "Green3_1" (RGB 0,215,0).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Green3_1 { get; } = new Color(40, 0, 215, 0);
/// <summary>
/// Gets the color "SpringGreen3_1" (RGB 0,215,95).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color SpringGreen3_1 { get; } = new Color(41, 0, 215, 95);
/// <summary>
/// Gets the color "SpringGreen2" (RGB 0,215,135).
/// </summary>
public static Color SpringGreen2 { get; } = new Color(42, 0, 215, 135);
/// <summary>
/// Gets the color "Cyan3" (RGB 0,215,175).
/// </summary>
public static Color Cyan3 { get; } = new Color(43, 0, 215, 175);
/// <summary>
/// Gets the color "DarkTurquoise" (RGB 0,215,215).
/// </summary>
public static Color DarkTurquoise { get; } = new Color(44, 0, 215, 215);
/// <summary>
/// Gets the color "Turquoise2" (RGB 0,215,255).
/// </summary>
public static Color Turquoise2 { get; } = new Color(45, 0, 215, 255);
/// <summary>
/// Gets the color "Green1" (RGB 0,255,0).
/// </summary>
public static Color Green1 { get; } = new Color(46, 0, 255, 0);
/// <summary>
/// Gets the color "SpringGreen2_1" (RGB 0,255,95).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color SpringGreen2_1 { get; } = new Color(47, 0, 255, 95);
/// <summary>
/// Gets the color "SpringGreen1" (RGB 0,255,135).
/// </summary>
public static Color SpringGreen1 { get; } = new Color(48, 0, 255, 135);
/// <summary>
/// Gets the color "MediumSpringGreen" (RGB 0,255,175).
/// </summary>
public static Color MediumSpringGreen { get; } = new Color(49, 0, 255, 175);
/// <summary>
/// Gets the color "Cyan2" (RGB 0,255,215).
/// </summary>
public static Color Cyan2 { get; } = new Color(50, 0, 255, 215);
/// <summary>
/// Gets the color "Cyan1" (RGB 0,255,255).
/// </summary>
public static Color Cyan1 { get; } = new Color(51, 0, 255, 255);
/// <summary>
/// Gets the color "DarkRed" (RGB 95,0,0).
/// </summary>
public static Color DarkRed { get; } = new Color(52, 95, 0, 0);
/// <summary>
/// Gets the color "DeepPink4" (RGB 95,0,95).
/// </summary>
public static Color DeepPink4 { get; } = new Color(53, 95, 0, 95);
/// <summary>
/// Gets the color "Purple4" (RGB 95,0,135).
/// </summary>
public static Color Purple4 { get; } = new Color(54, 95, 0, 135);
/// <summary>
/// Gets the color "Purple4_1" (RGB 95,0,175).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Purple4_1 { get; } = new Color(55, 95, 0, 175);
/// <summary>
/// Gets the color "Purple3" (RGB 95,0,215).
/// </summary>
public static Color Purple3 { get; } = new Color(56, 95, 0, 215);
/// <summary>
/// Gets the color "BlueViolet" (RGB 95,0,255).
/// </summary>
public static Color BlueViolet { get; } = new Color(57, 95, 0, 255);
/// <summary>
/// Gets the color "Orange4" (RGB 95,95,0).
/// </summary>
public static Color Orange4 { get; } = new Color(58, 95, 95, 0);
/// <summary>
/// Gets the color "Grey37" (RGB 95,95,95).
/// </summary>
public static Color Grey37 { get; } = new Color(59, 95, 95, 95);
/// <summary>
/// Gets the color "MediumPurple4" (RGB 95,95,135).
/// </summary>
public static Color MediumPurple4 { get; } = new Color(60, 95, 95, 135);
/// <summary>
/// Gets the color "SlateBlue3" (RGB 95,95,175).
/// </summary>
public static Color SlateBlue3 { get; } = new Color(61, 95, 95, 175);
/// <summary>
/// Gets the color "SlateBlue3_1" (RGB 95,95,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color SlateBlue3_1 { get; } = new Color(62, 95, 95, 215);
/// <summary>
/// Gets the color "RoyalBlue1" (RGB 95,95,255).
/// </summary>
public static Color RoyalBlue1 { get; } = new Color(63, 95, 95, 255);
/// <summary>
/// Gets the color "Chartreuse4" (RGB 95,135,0).
/// </summary>
public static Color Chartreuse4 { get; } = new Color(64, 95, 135, 0);
/// <summary>
/// Gets the color "DarkSeaGreen4" (RGB 95,135,95).
/// </summary>
public static Color DarkSeaGreen4 { get; } = new Color(65, 95, 135, 95);
/// <summary>
/// Gets the color "PaleTurquoise4" (RGB 95,135,135).
/// </summary>
public static Color PaleTurquoise4 { get; } = new Color(66, 95, 135, 135);
/// <summary>
/// Gets the color "SteelBlue" (RGB 95,135,175).
/// </summary>
public static Color SteelBlue { get; } = new Color(67, 95, 135, 175);
/// <summary>
/// Gets the color "SteelBlue3" (RGB 95,135,215).
/// </summary>
public static Color SteelBlue3 { get; } = new Color(68, 95, 135, 215);
/// <summary>
/// Gets the color "CornflowerBlue" (RGB 95,135,255).
/// </summary>
public static Color CornflowerBlue { get; } = new Color(69, 95, 135, 255);
/// <summary>
/// Gets the color "Chartreuse3" (RGB 95,175,0).
/// </summary>
public static Color Chartreuse3 { get; } = new Color(70, 95, 175, 0);
/// <summary>
/// Gets the color "DarkSeaGreen4_1" (RGB 95,175,95).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkSeaGreen4_1 { get; } = new Color(71, 95, 175, 95);
/// <summary>
/// Gets the color "CadetBlue" (RGB 95,175,135).
/// </summary>
public static Color CadetBlue { get; } = new Color(72, 95, 175, 135);
/// <summary>
/// Gets the color "CadetBlue_1" (RGB 95,175,175).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color CadetBlue_1 { get; } = new Color(73, 95, 175, 175);
/// <summary>
/// Gets the color "SkyBlue3" (RGB 95,175,215).
/// </summary>
public static Color SkyBlue3 { get; } = new Color(74, 95, 175, 215);
/// <summary>
/// Gets the color "SteelBlue1" (RGB 95,175,255).
/// </summary>
public static Color SteelBlue1 { get; } = new Color(75, 95, 175, 255);
/// <summary>
/// Gets the color "Chartreuse3_1" (RGB 95,215,0).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Chartreuse3_1 { get; } = new Color(76, 95, 215, 0);
/// <summary>
/// Gets the color "PaleGreen3" (RGB 95,215,95).
/// </summary>
public static Color PaleGreen3 { get; } = new Color(77, 95, 215, 95);
/// <summary>
/// Gets the color "SeaGreen3" (RGB 95,215,135).
/// </summary>
public static Color SeaGreen3 { get; } = new Color(78, 95, 215, 135);
/// <summary>
/// Gets the color "Aquamarine3" (RGB 95,215,175).
/// </summary>
public static Color Aquamarine3 { get; } = new Color(79, 95, 215, 175);
/// <summary>
/// Gets the color "MediumTurquoise" (RGB 95,215,215).
/// </summary>
public static Color MediumTurquoise { get; } = new Color(80, 95, 215, 215);
/// <summary>
/// Gets the color "SteelBlue1_1" (RGB 95,215,255).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color SteelBlue1_1 { get; } = new Color(81, 95, 215, 255);
/// <summary>
/// Gets the color "Chartreuse2" (RGB 95,255,0).
/// </summary>
public static Color Chartreuse2 { get; } = new Color(82, 95, 255, 0);
/// <summary>
/// Gets the color "SeaGreen2" (RGB 95,255,95).
/// </summary>
public static Color SeaGreen2 { get; } = new Color(83, 95, 255, 95);
/// <summary>
/// Gets the color "SeaGreen1" (RGB 95,255,135).
/// </summary>
public static Color SeaGreen1 { get; } = new Color(84, 95, 255, 135);
/// <summary>
/// Gets the color "SeaGreen1_1" (RGB 95,255,175).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color SeaGreen1_1 { get; } = new Color(85, 95, 255, 175);
/// <summary>
/// Gets the color "Aquamarine1" (RGB 95,255,215).
/// </summary>
public static Color Aquamarine1 { get; } = new Color(86, 95, 255, 215);
/// <summary>
/// Gets the color "DarkSlateGray2" (RGB 95,255,255).
/// </summary>
public static Color DarkSlateGray2 { get; } = new Color(87, 95, 255, 255);
/// <summary>
/// Gets the color "DarkRed_1" (RGB 135,0,0).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkRed_1 { get; } = new Color(88, 135, 0, 0);
/// <summary>
/// Gets the color "DeepPink4_1" (RGB 135,0,95).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DeepPink4_1 { get; } = new Color(89, 135, 0, 95);
/// <summary>
/// Gets the color "DarkMagenta" (RGB 135,0,135).
/// </summary>
public static Color DarkMagenta { get; } = new Color(90, 135, 0, 135);
/// <summary>
/// Gets the color "DarkMagenta_1" (RGB 135,0,175).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkMagenta_1 { get; } = new Color(91, 135, 0, 175);
/// <summary>
/// Gets the color "DarkViolet" (RGB 135,0,215).
/// </summary>
public static Color DarkViolet { get; } = new Color(92, 135, 0, 215);
/// <summary>
/// Gets the color "Purple_1" (RGB 135,0,255).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Purple_1 { get; } = new Color(93, 135, 0, 255);
/// <summary>
/// Gets the color "Orange4_1" (RGB 135,95,0).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Orange4_1 { get; } = new Color(94, 135, 95, 0);
/// <summary>
/// Gets the color "LightPink4" (RGB 135,95,95).
/// </summary>
public static Color LightPink4 { get; } = new Color(95, 135, 95, 95);
/// <summary>
/// Gets the color "Plum4" (RGB 135,95,135).
/// </summary>
public static Color Plum4 { get; } = new Color(96, 135, 95, 135);
/// <summary>
/// Gets the color "MediumPurple3" (RGB 135,95,175).
/// </summary>
public static Color MediumPurple3 { get; } = new Color(97, 135, 95, 175);
/// <summary>
/// Gets the color "MediumPurple3_1" (RGB 135,95,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color MediumPurple3_1 { get; } = new Color(98, 135, 95, 215);
/// <summary>
/// Gets the color "SlateBlue1" (RGB 135,95,255).
/// </summary>
public static Color SlateBlue1 { get; } = new Color(99, 135, 95, 255);
/// <summary>
/// Gets the color "Yellow4" (RGB 135,135,0).
/// </summary>
public static Color Yellow4 { get; } = new Color(100, 135, 135, 0);
/// <summary>
/// Gets the color "Wheat4" (RGB 135,135,95).
/// </summary>
public static Color Wheat4 { get; } = new Color(101, 135, 135, 95);
/// <summary>
/// Gets the color "Grey53" (RGB 135,135,135).
/// </summary>
public static Color Grey53 { get; } = new Color(102, 135, 135, 135);
/// <summary>
/// Gets the color "LightSlateGrey" (RGB 135,135,175).
/// </summary>
public static Color LightSlateGrey { get; } = new Color(103, 135, 135, 175);
/// <summary>
/// Gets the color "MediumPurple" (RGB 135,135,215).
/// </summary>
public static Color MediumPurple { get; } = new Color(104, 135, 135, 215);
/// <summary>
/// Gets the color "LightSlateBlue" (RGB 135,135,255).
/// </summary>
public static Color LightSlateBlue { get; } = new Color(105, 135, 135, 255);
/// <summary>
/// Gets the color "Yellow4_1" (RGB 135,175,0).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Yellow4_1 { get; } = new Color(106, 135, 175, 0);
/// <summary>
/// Gets the color "DarkOliveGreen3" (RGB 135,175,95).
/// </summary>
public static Color DarkOliveGreen3 { get; } = new Color(107, 135, 175, 95);
/// <summary>
/// Gets the color "DarkSeaGreen" (RGB 135,175,135).
/// </summary>
public static Color DarkSeaGreen { get; } = new Color(108, 135, 175, 135);
/// <summary>
/// Gets the color "LightSkyBlue3" (RGB 135,175,175).
/// </summary>
public static Color LightSkyBlue3 { get; } = new Color(109, 135, 175, 175);
/// <summary>
/// Gets the color "LightSkyBlue3_1" (RGB 135,175,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color LightSkyBlue3_1 { get; } = new Color(110, 135, 175, 215);
/// <summary>
/// Gets the color "SkyBlue2" (RGB 135,175,255).
/// </summary>
public static Color SkyBlue2 { get; } = new Color(111, 135, 175, 255);
/// <summary>
/// Gets the color "Chartreuse2_1" (RGB 135,215,0).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Chartreuse2_1 { get; } = new Color(112, 135, 215, 0);
/// <summary>
/// Gets the color "DarkOliveGreen3_1" (RGB 135,215,95).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkOliveGreen3_1 { get; } = new Color(113, 135, 215, 95);
/// <summary>
/// Gets the color "PaleGreen3_1" (RGB 135,215,135).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color PaleGreen3_1 { get; } = new Color(114, 135, 215, 135);
/// <summary>
/// Gets the color "DarkSeaGreen3" (RGB 135,215,175).
/// </summary>
public static Color DarkSeaGreen3 { get; } = new Color(115, 135, 215, 175);
/// <summary>
/// Gets the color "DarkSlateGray3" (RGB 135,215,215).
/// </summary>
public static Color DarkSlateGray3 { get; } = new Color(116, 135, 215, 215);
/// <summary>
/// Gets the color "SkyBlue1" (RGB 135,215,255).
/// </summary>
public static Color SkyBlue1 { get; } = new Color(117, 135, 215, 255);
/// <summary>
/// Gets the color "Chartreuse1" (RGB 135,255,0).
/// </summary>
public static Color Chartreuse1 { get; } = new Color(118, 135, 255, 0);
/// <summary>
/// Gets the color "LightGreen" (RGB 135,255,95).
/// </summary>
public static Color LightGreen { get; } = new Color(119, 135, 255, 95);
/// <summary>
/// Gets the color "LightGreen_1" (RGB 135,255,135).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color LightGreen_1 { get; } = new Color(120, 135, 255, 135);
/// <summary>
/// Gets the color "PaleGreen1" (RGB 135,255,175).
/// </summary>
public static Color PaleGreen1 { get; } = new Color(121, 135, 255, 175);
/// <summary>
/// Gets the color "Aquamarine1_1" (RGB 135,255,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Aquamarine1_1 { get; } = new Color(122, 135, 255, 215);
/// <summary>
/// Gets the color "DarkSlateGray1" (RGB 135,255,255).
/// </summary>
public static Color DarkSlateGray1 { get; } = new Color(123, 135, 255, 255);
/// <summary>
/// Gets the color "Red3" (RGB 175,0,0).
/// </summary>
public static Color Red3 { get; } = new Color(124, 175, 0, 0);
/// <summary>
/// Gets the color "DeepPink4_2" (RGB 175,0,95).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DeepPink4_2 { get; } = new Color(125, 175, 0, 95);
/// <summary>
/// Gets the color "MediumVioletRed" (RGB 175,0,135).
/// </summary>
public static Color MediumVioletRed { get; } = new Color(126, 175, 0, 135);
/// <summary>
/// Gets the color "Magenta3" (RGB 175,0,175).
/// </summary>
public static Color Magenta3 { get; } = new Color(127, 175, 0, 175);
/// <summary>
/// Gets the color "DarkViolet_1" (RGB 175,0,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkViolet_1 { get; } = new Color(128, 175, 0, 215);
/// <summary>
/// Gets the color "Purple_2" (RGB 175,0,255).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Purple_2 { get; } = new Color(129, 175, 0, 255);
/// <summary>
/// Gets the color "DarkOrange3" (RGB 175,95,0).
/// </summary>
public static Color DarkOrange3 { get; } = new Color(130, 175, 95, 0);
/// <summary>
/// Gets the color "IndianRed" (RGB 175,95,95).
/// </summary>
public static Color IndianRed { get; } = new Color(131, 175, 95, 95);
/// <summary>
/// Gets the color "HotPink3" (RGB 175,95,135).
/// </summary>
public static Color HotPink3 { get; } = new Color(132, 175, 95, 135);
/// <summary>
/// Gets the color "MediumOrchid3" (RGB 175,95,175).
/// </summary>
public static Color MediumOrchid3 { get; } = new Color(133, 175, 95, 175);
/// <summary>
/// Gets the color "MediumOrchid" (RGB 175,95,215).
/// </summary>
public static Color MediumOrchid { get; } = new Color(134, 175, 95, 215);
/// <summary>
/// Gets the color "MediumPurple2" (RGB 175,95,255).
/// </summary>
public static Color MediumPurple2 { get; } = new Color(135, 175, 95, 255);
/// <summary>
/// Gets the color "DarkGoldenrod" (RGB 175,135,0).
/// </summary>
public static Color DarkGoldenrod { get; } = new Color(136, 175, 135, 0);
/// <summary>
/// Gets the color "LightSalmon3" (RGB 175,135,95).
/// </summary>
public static Color LightSalmon3 { get; } = new Color(137, 175, 135, 95);
/// <summary>
/// Gets the color "RosyBrown" (RGB 175,135,135).
/// </summary>
public static Color RosyBrown { get; } = new Color(138, 175, 135, 135);
/// <summary>
/// Gets the color "Grey63" (RGB 175,135,175).
/// </summary>
public static Color Grey63 { get; } = new Color(139, 175, 135, 175);
/// <summary>
/// Gets the color "MediumPurple2_1" (RGB 175,135,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color MediumPurple2_1 { get; } = new Color(140, 175, 135, 215);
/// <summary>
/// Gets the color "MediumPurple1" (RGB 175,135,255).
/// </summary>
public static Color MediumPurple1 { get; } = new Color(141, 175, 135, 255);
/// <summary>
/// Gets the color "Gold3" (RGB 175,175,0).
/// </summary>
public static Color Gold3 { get; } = new Color(142, 175, 175, 0);
/// <summary>
/// Gets the color "DarkKhaki" (RGB 175,175,95).
/// </summary>
public static Color DarkKhaki { get; } = new Color(143, 175, 175, 95);
/// <summary>
/// Gets the color "NavajoWhite3" (RGB 175,175,135).
/// </summary>
public static Color NavajoWhite3 { get; } = new Color(144, 175, 175, 135);
/// <summary>
/// Gets the color "Grey69" (RGB 175,175,175).
/// </summary>
public static Color Grey69 { get; } = new Color(145, 175, 175, 175);
/// <summary>
/// Gets the color "LightSteelBlue3" (RGB 175,175,215).
/// </summary>
public static Color LightSteelBlue3 { get; } = new Color(146, 175, 175, 215);
/// <summary>
/// Gets the color "LightSteelBlue" (RGB 175,175,255).
/// </summary>
public static Color LightSteelBlue { get; } = new Color(147, 175, 175, 255);
/// <summary>
/// Gets the color "Yellow3" (RGB 175,215,0).
/// </summary>
public static Color Yellow3 { get; } = new Color(148, 175, 215, 0);
/// <summary>
/// Gets the color "DarkOliveGreen3_2" (RGB 175,215,95).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkOliveGreen3_2 { get; } = new Color(149, 175, 215, 95);
/// <summary>
/// Gets the color "DarkSeaGreen3_1" (RGB 175,215,135).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkSeaGreen3_1 { get; } = new Color(150, 175, 215, 135);
/// <summary>
/// Gets the color "DarkSeaGreen2" (RGB 175,215,175).
/// </summary>
public static Color DarkSeaGreen2 { get; } = new Color(151, 175, 215, 175);
/// <summary>
/// Gets the color "LightCyan3" (RGB 175,215,215).
/// </summary>
public static Color LightCyan3 { get; } = new Color(152, 175, 215, 215);
/// <summary>
/// Gets the color "LightSkyBlue1" (RGB 175,215,255).
/// </summary>
public static Color LightSkyBlue1 { get; } = new Color(153, 175, 215, 255);
/// <summary>
/// Gets the color "GreenYellow" (RGB 175,255,0).
/// </summary>
public static Color GreenYellow { get; } = new Color(154, 175, 255, 0);
/// <summary>
/// Gets the color "DarkOliveGreen2" (RGB 175,255,95).
/// </summary>
public static Color DarkOliveGreen2 { get; } = new Color(155, 175, 255, 95);
/// <summary>
/// Gets the color "PaleGreen1_1" (RGB 175,255,135).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color PaleGreen1_1 { get; } = new Color(156, 175, 255, 135);
/// <summary>
/// Gets the color "DarkSeaGreen2_1" (RGB 175,255,175).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkSeaGreen2_1 { get; } = new Color(157, 175, 255, 175);
/// <summary>
/// Gets the color "DarkSeaGreen1" (RGB 175,255,215).
/// </summary>
public static Color DarkSeaGreen1 { get; } = new Color(158, 175, 255, 215);
/// <summary>
/// Gets the color "PaleTurquoise1" (RGB 175,255,255).
/// </summary>
public static Color PaleTurquoise1 { get; } = new Color(159, 175, 255, 255);
/// <summary>
/// Gets the color "Red3_1" (RGB 215,0,0).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Red3_1 { get; } = new Color(160, 215, 0, 0);
/// <summary>
/// Gets the color "DeepPink3" (RGB 215,0,95).
/// </summary>
public static Color DeepPink3 { get; } = new Color(161, 215, 0, 95);
/// <summary>
/// Gets the color "DeepPink3_1" (RGB 215,0,135).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DeepPink3_1 { get; } = new Color(162, 215, 0, 135);
/// <summary>
/// Gets the color "Magenta3_1" (RGB 215,0,175).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Magenta3_1 { get; } = new Color(163, 215, 0, 175);
/// <summary>
/// Gets the color "Magenta3_2" (RGB 215,0,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Magenta3_2 { get; } = new Color(164, 215, 0, 215);
/// <summary>
/// Gets the color "Magenta2" (RGB 215,0,255).
/// </summary>
public static Color Magenta2 { get; } = new Color(165, 215, 0, 255);
/// <summary>
/// Gets the color "DarkOrange3_1" (RGB 215,95,0).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkOrange3_1 { get; } = new Color(166, 215, 95, 0);
/// <summary>
/// Gets the color "IndianRed_1" (RGB 215,95,95).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color IndianRed_1 { get; } = new Color(167, 215, 95, 95);
/// <summary>
/// Gets the color "HotPink3_1" (RGB 215,95,135).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color HotPink3_1 { get; } = new Color(168, 215, 95, 135);
/// <summary>
/// Gets the color "HotPink2" (RGB 215,95,175).
/// </summary>
public static Color HotPink2 { get; } = new Color(169, 215, 95, 175);
/// <summary>
/// Gets the color "Orchid" (RGB 215,95,215).
/// </summary>
public static Color Orchid { get; } = new Color(170, 215, 95, 215);
/// <summary>
/// Gets the color "MediumOrchid1" (RGB 215,95,255).
/// </summary>
public static Color MediumOrchid1 { get; } = new Color(171, 215, 95, 255);
/// <summary>
/// Gets the color "Orange3" (RGB 215,135,0).
/// </summary>
public static Color Orange3 { get; } = new Color(172, 215, 135, 0);
/// <summary>
/// Gets the color "LightSalmon3_1" (RGB 215,135,95).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color LightSalmon3_1 { get; } = new Color(173, 215, 135, 95);
/// <summary>
/// Gets the color "LightPink3" (RGB 215,135,135).
/// </summary>
public static Color LightPink3 { get; } = new Color(174, 215, 135, 135);
/// <summary>
/// Gets the color "Pink3" (RGB 215,135,175).
/// </summary>
public static Color Pink3 { get; } = new Color(175, 215, 135, 175);
/// <summary>
/// Gets the color "Plum3" (RGB 215,135,215).
/// </summary>
public static Color Plum3 { get; } = new Color(176, 215, 135, 215);
/// <summary>
/// Gets the color "Violet" (RGB 215,135,255).
/// </summary>
public static Color Violet { get; } = new Color(177, 215, 135, 255);
/// <summary>
/// Gets the color "Gold3_1" (RGB 215,175,0).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Gold3_1 { get; } = new Color(178, 215, 175, 0);
/// <summary>
/// Gets the color "LightGoldenrod3" (RGB 215,175,95).
/// </summary>
public static Color LightGoldenrod3 { get; } = new Color(179, 215, 175, 95);
/// <summary>
/// Gets the color "Tan" (RGB 215,175,135).
/// </summary>
public static Color Tan { get; } = new Color(180, 215, 175, 135);
/// <summary>
/// Gets the color "MistyRose3" (RGB 215,175,175).
/// </summary>
public static Color MistyRose3 { get; } = new Color(181, 215, 175, 175);
/// <summary>
/// Gets the color "Thistle3" (RGB 215,175,215).
/// </summary>
public static Color Thistle3 { get; } = new Color(182, 215, 175, 215);
/// <summary>
/// Gets the color "Plum2" (RGB 215,175,255).
/// </summary>
public static Color Plum2 { get; } = new Color(183, 215, 175, 255);
/// <summary>
/// Gets the color "Yellow3_1" (RGB 215,215,0).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Yellow3_1 { get; } = new Color(184, 215, 215, 0);
/// <summary>
/// Gets the color "Khaki3" (RGB 215,215,95).
/// </summary>
public static Color Khaki3 { get; } = new Color(185, 215, 215, 95);
/// <summary>
/// Gets the color "LightGoldenrod2" (RGB 215,215,135).
/// </summary>
public static Color LightGoldenrod2 { get; } = new Color(186, 215, 215, 135);
/// <summary>
/// Gets the color "LightYellow3" (RGB 215,215,175).
/// </summary>
public static Color LightYellow3 { get; } = new Color(187, 215, 215, 175);
/// <summary>
/// Gets the color "Grey84" (RGB 215,215,215).
/// </summary>
public static Color Grey84 { get; } = new Color(188, 215, 215, 215);
/// <summary>
/// Gets the color "LightSteelBlue1" (RGB 215,215,255).
/// </summary>
public static Color LightSteelBlue1 { get; } = new Color(189, 215, 215, 255);
/// <summary>
/// Gets the color "Yellow2" (RGB 215,255,0).
/// </summary>
public static Color Yellow2 { get; } = new Color(190, 215, 255, 0);
/// <summary>
/// Gets the color "DarkOliveGreen1" (RGB 215,255,95).
/// </summary>
public static Color DarkOliveGreen1 { get; } = new Color(191, 215, 255, 95);
/// <summary>
/// Gets the color "DarkOliveGreen1_1" (RGB 215,255,135).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkOliveGreen1_1 { get; } = new Color(192, 215, 255, 135);
/// <summary>
/// Gets the color "DarkSeaGreen1_1" (RGB 215,255,175).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DarkSeaGreen1_1 { get; } = new Color(193, 215, 255, 175);
/// <summary>
/// Gets the color "Honeydew2" (RGB 215,255,215).
/// </summary>
public static Color Honeydew2 { get; } = new Color(194, 215, 255, 215);
/// <summary>
/// Gets the color "LightCyan1" (RGB 215,255,255).
/// </summary>
public static Color LightCyan1 { get; } = new Color(195, 215, 255, 255);
/// <summary>
/// Gets the color "Red1" (RGB 255,0,0).
/// </summary>
public static Color Red1 { get; } = new Color(196, 255, 0, 0);
/// <summary>
/// Gets the color "DeepPink2" (RGB 255,0,95).
/// </summary>
public static Color DeepPink2 { get; } = new Color(197, 255, 0, 95);
/// <summary>
/// Gets the color "DeepPink1" (RGB 255,0,135).
/// </summary>
public static Color DeepPink1 { get; } = new Color(198, 255, 0, 135);
/// <summary>
/// Gets the color "DeepPink1_1" (RGB 255,0,175).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color DeepPink1_1 { get; } = new Color(199, 255, 0, 175);
/// <summary>
/// Gets the color "Magenta2_1" (RGB 255,0,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color Magenta2_1 { get; } = new Color(200, 255, 0, 215);
/// <summary>
/// Gets the color "Magenta1" (RGB 255,0,255).
/// </summary>
public static Color Magenta1 { get; } = new Color(201, 255, 0, 255);
/// <summary>
/// Gets the color "OrangeRed1" (RGB 255,95,0).
/// </summary>
public static Color OrangeRed1 { get; } = new Color(202, 255, 95, 0);
/// <summary>
/// Gets the color "IndianRed1" (RGB 255,95,95).
/// </summary>
public static Color IndianRed1 { get; } = new Color(203, 255, 95, 95);
/// <summary>
/// Gets the color "IndianRed1_1" (RGB 255,95,135).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color IndianRed1_1 { get; } = new Color(204, 255, 95, 135);
/// <summary>
/// Gets the color "HotPink" (RGB 255,95,175).
/// </summary>
public static Color HotPink { get; } = new Color(205, 255, 95, 175);
/// <summary>
/// Gets the color "HotPink_1" (RGB 255,95,215).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color HotPink_1 { get; } = new Color(206, 255, 95, 215);
/// <summary>
/// Gets the color "MediumOrchid1_1" (RGB 255,95,255).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color MediumOrchid1_1 { get; } = new Color(207, 255, 95, 255);
/// <summary>
/// Gets the color "DarkOrange" (RGB 255,135,0).
/// </summary>
public static Color DarkOrange { get; } = new Color(208, 255, 135, 0);
/// <summary>
/// Gets the color "Salmon1" (RGB 255,135,95).
/// </summary>
public static Color Salmon1 { get; } = new Color(209, 255, 135, 95);
/// <summary>
/// Gets the color "LightCoral" (RGB 255,135,135).
/// </summary>
public static Color LightCoral { get; } = new Color(210, 255, 135, 135);
/// <summary>
/// Gets the color "PaleVioletRed1" (RGB 255,135,175).
/// </summary>
public static Color PaleVioletRed1 { get; } = new Color(211, 255, 135, 175);
/// <summary>
/// Gets the color "Orchid2" (RGB 255,135,215).
/// </summary>
public static Color Orchid2 { get; } = new Color(212, 255, 135, 215);
/// <summary>
/// Gets the color "Orchid1" (RGB 255,135,255).
/// </summary>
public static Color Orchid1 { get; } = new Color(213, 255, 135, 255);
/// <summary>
/// Gets the color "Orange1" (RGB 255,175,0).
/// </summary>
public static Color Orange1 { get; } = new Color(214, 255, 175, 0);
/// <summary>
/// Gets the color "SandyBrown" (RGB 255,175,95).
/// </summary>
public static Color SandyBrown { get; } = new Color(215, 255, 175, 95);
/// <summary>
/// Gets the color "LightSalmon1" (RGB 255,175,135).
/// </summary>
public static Color LightSalmon1 { get; } = new Color(216, 255, 175, 135);
/// <summary>
/// Gets the color "LightPink1" (RGB 255,175,175).
/// </summary>
public static Color LightPink1 { get; } = new Color(217, 255, 175, 175);
/// <summary>
/// Gets the color "Pink1" (RGB 255,175,215).
/// </summary>
public static Color Pink1 { get; } = new Color(218, 255, 175, 215);
/// <summary>
/// Gets the color "Plum1" (RGB 255,175,255).
/// </summary>
public static Color Plum1 { get; } = new Color(219, 255, 175, 255);
/// <summary>
/// Gets the color "Gold1" (RGB 255,215,0).
/// </summary>
public static Color Gold1 { get; } = new Color(220, 255, 215, 0);
/// <summary>
/// Gets the color "LightGoldenrod2_1" (RGB 255,215,95).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color LightGoldenrod2_1 { get; } = new Color(221, 255, 215, 95);
/// <summary>
/// Gets the color "LightGoldenrod2_2" (RGB 255,215,135).
/// </summary>
[SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores")]
public static Color LightGoldenrod2_2 { get; } = new Color(222, 255, 215, 135);
/// <summary>
/// Gets the color "NavajoWhite1" (RGB 255,215,175).
/// </summary>
public static Color NavajoWhite1 { get; } = new Color(223, 255, 215, 175);
/// <summary>
/// Gets the color "MistyRose1" (RGB 255,215,215).
/// </summary>
public static Color MistyRose1 { get; } = new Color(224, 255, 215, 215);
/// <summary>
/// Gets the color "Thistle1" (RGB 255,215,255).
/// </summary>
public static Color Thistle1 { get; } = new Color(225, 255, 215, 255);
/// <summary>
/// Gets the color "Yellow1" (RGB 255,255,0).
/// </summary>
public static Color Yellow1 { get; } = new Color(226, 255, 255, 0);
/// <summary>
/// Gets the color "LightGoldenrod1" (RGB 255,255,95).
/// </summary>
public static Color LightGoldenrod1 { get; } = new Color(227, 255, 255, 95);
/// <summary>
/// Gets the color "Khaki1" (RGB 255,255,135).
/// </summary>
public static Color Khaki1 { get; } = new Color(228, 255, 255, 135);
/// <summary>
/// Gets the color "Wheat1" (RGB 255,255,175).
/// </summary>
public static Color Wheat1 { get; } = new Color(229, 255, 255, 175);
/// <summary>
/// Gets the color "Cornsilk1" (RGB 255,255,215).
/// </summary>
public static Color Cornsilk1 { get; } = new Color(230, 255, 255, 215);
/// <summary>
/// Gets the color "Grey100" (RGB 255,255,255).
/// </summary>
public static Color Grey100 { get; } = new Color(231, 255, 255, 255);
/// <summary>
/// Gets the color "Grey3" (RGB 8,8,8).
/// </summary>
public static Color Grey3 { get; } = new Color(232, 8, 8, 8);
/// <summary>
/// Gets the color "Grey7" (RGB 18,18,18).
/// </summary>
public static Color Grey7 { get; } = new Color(233, 18, 18, 18);
/// <summary>
/// Gets the color "Grey11" (RGB 28,28,28).
/// </summary>
public static Color Grey11 { get; } = new Color(234, 28, 28, 28);
/// <summary>
/// Gets the color "Grey15" (RGB 38,38,38).
/// </summary>
public static Color Grey15 { get; } = new Color(235, 38, 38, 38);
/// <summary>
/// Gets the color "Grey19" (RGB 48,48,48).
/// </summary>
public static Color Grey19 { get; } = new Color(236, 48, 48, 48);
/// <summary>
/// Gets the color "Grey23" (RGB 58,58,58).
/// </summary>
public static Color Grey23 { get; } = new Color(237, 58, 58, 58);
/// <summary>
/// Gets the color "Grey27" (RGB 68,68,68).
/// </summary>
public static Color Grey27 { get; } = new Color(238, 68, 68, 68);
/// <summary>
/// Gets the color "Grey30" (RGB 78,78,78).
/// </summary>
public static Color Grey30 { get; } = new Color(239, 78, 78, 78);
/// <summary>
/// Gets the color "Grey35" (RGB 88,88,88).
/// </summary>
public static Color Grey35 { get; } = new Color(240, 88, 88, 88);
/// <summary>
/// Gets the color "Grey39" (RGB 98,98,98).
/// </summary>
public static Color Grey39 { get; } = new Color(241, 98, 98, 98);
/// <summary>
/// Gets the color "Grey42" (RGB 108,108,108).
/// </summary>
public static Color Grey42 { get; } = new Color(242, 108, 108, 108);
/// <summary>
/// Gets the color "Grey46" (RGB 118,118,118).
/// </summary>
public static Color Grey46 { get; } = new Color(243, 118, 118, 118);
/// <summary>
/// Gets the color "Grey50" (RGB 128,128,128).
/// </summary>
public static Color Grey50 { get; } = new Color(244, 128, 128, 128);
/// <summary>
/// Gets the color "Grey54" (RGB 138,138,138).
/// </summary>
public static Color Grey54 { get; } = new Color(245, 138, 138, 138);
/// <summary>
/// Gets the color "Grey58" (RGB 148,148,148).
/// </summary>
public static Color Grey58 { get; } = new Color(246, 148, 148, 148);
/// <summary>
/// Gets the color "Grey62" (RGB 158,158,158).
/// </summary>
public static Color Grey62 { get; } = new Color(247, 158, 158, 158);
/// <summary>
/// Gets the color "Grey66" (RGB 168,168,168).
/// </summary>
public static Color Grey66 { get; } = new Color(248, 168, 168, 168);
/// <summary>
/// Gets the color "Grey70" (RGB 178,178,178).
/// </summary>
public static Color Grey70 { get; } = new Color(249, 178, 178, 178);
/// <summary>
/// Gets the color "Grey74" (RGB 188,188,188).
/// </summary>
public static Color Grey74 { get; } = new Color(250, 188, 188, 188);
/// <summary>
/// Gets the color "Grey78" (RGB 198,198,198).
/// </summary>
public static Color Grey78 { get; } = new Color(251, 198, 198, 198);
/// <summary>
/// Gets the color "Grey82" (RGB 208,208,208).
/// </summary>
public static Color Grey82 { get; } = new Color(252, 208, 208, 208);
/// <summary>
/// Gets the color "Grey85" (RGB 218,218,218).
/// </summary>
public static Color Grey85 { get; } = new Color(253, 218, 218, 218);
/// <summary>
/// Gets the color "Grey89" (RGB 228,228,228).
/// </summary>
public static Color Grey89 { get; } = new Color(254, 228, 228, 228);
/// <summary>
/// Gets the color "Grey93" (RGB 238,238,238).
/// </summary>
public static Color Grey93 { get; } = new Color(255, 238, 238, 238);
}
}