Skip to content

Instantly share code, notes, and snippets.

@divide-by-zero
Last active January 11, 2019 00:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save divide-by-zero/275c975d34f066ce3abe743f2ff16ea3 to your computer and use it in GitHub Desktop.
Save divide-by-zero/275c975d34f066ce3abe743f2ff16ea3 to your computer and use it in GitHub Desktop.
UnityのColorは定数で用意されている名前付きカラーが少なすぎるので、自分でなんとかしてみた。
namespace UnityEngine
{
public static class ColorConst
{
/// <summary>
/// #0048BA R:0% G:28% B:73%
/// </summary>
public static Color Absolute_Zero
{
get
{
return new Color(0f, 0.28f, 0.73f, 1);
}
}
/// <summary>
/// #B0BF1A R:37% G:50% B:25%
/// </summary>
public static Color Acid
{
get
{
return new Color(0.37f, 0.5f, 0.25f, 1);
}
}
/// <summary>
/// #B0BF1A R:69% G:75% B:10%
/// </summary>
public static Color Acid_green
{
get
{
return new Color(0.69f, 0.75f, 0.1f, 1);
}
}
/// <summary>
/// #7CB9E8 R:49% G:73% B:91%
/// </summary>
public static Color Aero
{
get
{
return new Color(0.49f, 0.73f, 0.91f, 1);
}
}
/// <summary>
/// #C9FFE5 R:79% G:100% B:90%
/// </summary>
public static Color Aero_blue
{
get
{
return new Color(0.79f, 1f, 0.9f, 1);
}
}
/// <summary>
/// #72A0C1 R:45% G:63% B:76%
/// </summary>
public static Color Air_superiority_blue
{
get
{
return new Color(0.45f, 0.63f, 0.76f, 1);
}
}
/// <summary>
/// #EDEAE0 R:93% G:92% B:88%
/// </summary>
public static Color Alabaster
{
get
{
return new Color(0.93f, 0.92f, 0.88f, 1);
}
}
/// <summary>
/// #F0F8FF R:94% G:97% B:100%
/// </summary>
public static Color Alice_blue
{
get
{
return new Color(0.94f, 0.97f, 1f, 1);
}
}
/// <summary>
/// #C5E17A R:77% G:88% B:48%
/// </summary>
public static Color Alien_Armpit
{
get
{
return new Color(0.77f, 0.88f, 0.48f, 1);
}
}
/// <summary>
/// #C46210 R:77% G:38% B:6%
/// </summary>
public static Color Alloy_orange
{
get
{
return new Color(0.77f, 0.38f, 0.06f, 1);
}
}
/// <summary>
/// #EFDECD R:94% G:87% B:80%
/// </summary>
public static Color Almond
{
get
{
return new Color(0.94f, 0.87f, 0.8f, 1);
}
}
/// <summary>
/// #3B7A57 R:23% G:48% B:34%
/// </summary>
public static Color Amazon
{
get
{
return new Color(0.23f, 0.48f, 0.34f, 1);
}
}
/// <summary>
/// #FFBF00 R:100% G:75% B:0%
/// </summary>
public static Color Amber
{
get
{
return new Color(1f, 0.75f, 0f, 1);
}
}
/// <summary>
/// #9966CC R:60% G:40% B:80%
/// </summary>
public static Color Amethyst
{
get
{
return new Color(0.6f, 0.4f, 0.8f, 1);
}
}
/// <summary>
/// #F2F3F4 R:95% G:95% B:96%
/// </summary>
public static Color Anti_flash_white
{
get
{
return new Color(0.95f, 0.95f, 0.96f, 1);
}
}
/// <summary>
/// #CD9575 R:80% G:58% B:46%
/// </summary>
public static Color Antique_brass
{
get
{
return new Color(0.8f, 0.58f, 0.46f, 1);
}
}
/// <summary>
/// #665D1E R:40% G:36% B:12%
/// </summary>
public static Color Antique_bronze
{
get
{
return new Color(0.4f, 0.36f, 0.12f, 1);
}
}
/// <summary>
/// #915C83 R:57% G:36% B:51%
/// </summary>
public static Color Antique_fuchsia
{
get
{
return new Color(0.57f, 0.36f, 0.51f, 1);
}
}
/// <summary>
/// #841B2D R:52% G:11% B:18%
/// </summary>
public static Color Antique_ruby
{
get
{
return new Color(0.52f, 0.11f, 0.18f, 1);
}
}
/// <summary>
/// #FAEBD7 R:98% G:92% B:84%
/// </summary>
public static Color Antique_white
{
get
{
return new Color(0.98f, 0.92f, 0.84f, 1);
}
}
/// <summary>
/// #008000 R:0% G:50% B:0%
/// </summary>
public static Color Ao_English
{
get
{
return new Color(0f, 0.5f, 0f, 1);
}
}
/// <summary>
/// #8DB600 R:55% G:71% B:0%
/// </summary>
public static Color Apple_green
{
get
{
return new Color(0.55f, 0.71f, 0f, 1);
}
}
/// <summary>
/// #FBCEB1 R:98% G:81% B:69%
/// </summary>
public static Color Apricot
{
get
{
return new Color(0.98f, 0.81f, 0.69f, 1);
}
}
/// <summary>
/// #00FFFF R:0% G:100% B:100%
/// </summary>
public static Color Aqua
{
get
{
return new Color(0f, 1f, 1f, 1);
}
}
/// <summary>
/// #7FFFD4 R:50% G:100% B:83%
/// </summary>
public static Color Aquamarine
{
get
{
return new Color(0.5f, 1f, 0.83f, 1);
}
}
/// <summary>
/// #D0FF14 R:82% G:100% B:8%
/// </summary>
public static Color Arctic_lime
{
get
{
return new Color(0.82f, 1f, 0.08f, 1);
}
}
/// <summary>
/// #4B5320 R:29% G:33% B:13%
/// </summary>
public static Color Army_green
{
get
{
return new Color(0.29f, 0.33f, 0.13f, 1);
}
}
/// <summary>
/// #8F9779 R:56% G:59% B:47%
/// </summary>
public static Color Artichoke
{
get
{
return new Color(0.56f, 0.59f, 0.47f, 1);
}
}
/// <summary>
/// #E9D66B R:91% G:84% B:42%
/// </summary>
public static Color Arylide_yellow
{
get
{
return new Color(0.91f, 0.84f, 0.42f, 1);
}
}
/// <summary>
/// #B2BEB5 R:70% G:75% B:71%
/// </summary>
public static Color Ash_gray
{
get
{
return new Color(0.7f, 0.75f, 0.71f, 1);
}
}
/// <summary>
/// #87A96B R:53% G:66% B:42%
/// </summary>
public static Color Asparagus
{
get
{
return new Color(0.53f, 0.66f, 0.42f, 1);
}
}
/// <summary>
/// #FF9966 R:100% G:60% B:40%
/// </summary>
public static Color Atomic_tangerine
{
get
{
return new Color(1f, 0.6f, 0.4f, 1);
}
}
/// <summary>
/// #A52A2A R:65% G:16% B:16%
/// </summary>
public static Color Auburn
{
get
{
return new Color(0.65f, 0.16f, 0.16f, 1);
}
}
/// <summary>
/// #FDEE00 R:99% G:93% B:0%
/// </summary>
public static Color Aureolin
{
get
{
return new Color(0.99f, 0.93f, 0f, 1);
}
}
/// <summary>
/// #6E7F80 R:43% G:50% B:50%
/// </summary>
public static Color AuroMetalSaurus
{
get
{
return new Color(0.43f, 0.5f, 0.5f, 1);
}
}
/// <summary>
/// #568203 R:34% G:51% B:1%
/// </summary>
public static Color Avocado
{
get
{
return new Color(0.34f, 0.51f, 0.01f, 1);
}
}
/// <summary>
/// #007FFF R:0% G:50% B:100%
/// </summary>
public static Color Azure
{
get
{
return new Color(0f, 0.5f, 1f, 1);
}
}
/// <summary>
/// #F0FFFF R:94% G:100% B:100%
/// </summary>
public static Color Azure_X11_web_color
{
get
{
return new Color(0.94f, 1f, 1f, 1);
}
}
/// <summary>
/// #89CFF0 R:54% G:81% B:94%
/// </summary>
public static Color Baby_blue
{
get
{
return new Color(0.54f, 0.81f, 0.94f, 1);
}
}
/// <summary>
/// #A1CAF1 R:63% G:79% B:95%
/// </summary>
public static Color Baby_blue_eyes
{
get
{
return new Color(0.63f, 0.79f, 0.95f, 1);
}
}
/// <summary>
/// #F4C2C2 R:96% G:76% B:76%
/// </summary>
public static Color Baby_pink
{
get
{
return new Color(0.96f, 0.76f, 0.76f, 1);
}
}
/// <summary>
/// #FEFEFA R:100% G:100% B:98%
/// </summary>
public static Color Baby_powder
{
get
{
return new Color(1f, 1f, 0.98f, 1);
}
}
/// <summary>
/// #FF91AF R:100% G:57% B:69%
/// </summary>
public static Color Baker_Miller_pink
{
get
{
return new Color(1f, 0.57f, 0.69f, 1);
}
}
/// <summary>
/// #FAE7B5 R:98% G:91% B:71%
/// </summary>
public static Color Banana_Mania
{
get
{
return new Color(0.98f, 0.91f, 0.71f, 1);
}
}
/// <summary>
/// #E94196 R:91% G:25% B:59%
/// </summary>
public static Color Barbie_Pink
{
get
{
return new Color(0.91f, 0.25f, 0.59f, 1);
}
}
/// <summary>
/// #E0218A R:88% G:13% B:54%
/// </summary>
public static Color Barbie_Pink_Pantone
{
get
{
return new Color(0.88f, 0.13f, 0.54f, 1);
}
}
/// <summary>
/// #7C0A02 R:49% G:4% B:1%
/// </summary>
public static Color Barn_red
{
get
{
return new Color(0.49f, 0.04f, 0.01f, 1);
}
}
/// <summary>
/// #848482 R:52% G:52% B:51%
/// </summary>
public static Color Battleship_grey
{
get
{
return new Color(0.52f, 0.52f, 0.51f, 1);
}
}
/// <summary>
/// #BCD4E6 R:74% G:83% B:90%
/// </summary>
public static Color Beau_blue
{
get
{
return new Color(0.74f, 0.83f, 0.9f, 1);
}
}
/// <summary>
/// #9F8170 R:62% G:51% B:44%
/// </summary>
public static Color Beaver
{
get
{
return new Color(0.62f, 0.51f, 0.44f, 1);
}
}
/// <summary>
/// #F5F5DC R:96% G:96% B:86%
/// </summary>
public static Color Beige
{
get
{
return new Color(0.96f, 0.96f, 0.86f, 1);
}
}
/// <summary>
/// #2E5894 R:18% G:35% B:58%
/// </summary>
public static Color Bdazzled_blue
{
get
{
return new Color(0.18f, 0.35f, 0.58f, 1);
}
}
/// <summary>
/// #9C2542 R:61% G:15% B:26%
/// </summary>
public static Color Big_dip_oruby
{
get
{
return new Color(0.61f, 0.15f, 0.26f, 1);
}
}
/// <summary>
/// #D99A6C R:85% G:60% B:42%
/// </summary>
public static Color Big_Foot_Feet
{
get
{
return new Color(0.85f, 0.6f, 0.42f, 1);
}
}
/// <summary>
/// #FFE4C4 R:100% G:89% B:77%
/// </summary>
public static Color Bisque
{
get
{
return new Color(1f, 0.89f, 0.77f, 1);
}
}
/// <summary>
/// #3D2B1F R:24% G:17% B:12%
/// </summary>
public static Color Bistre
{
get
{
return new Color(0.24f, 0.17f, 0.12f, 1);
}
}
/// <summary>
/// #967117 R:59% G:44% B:9%
/// </summary>
public static Color Bistre_brown
{
get
{
return new Color(0.59f, 0.44f, 0.09f, 1);
}
}
/// <summary>
/// #CAE00D R:79% G:88% B:5%
/// </summary>
public static Color Bitter_lemon
{
get
{
return new Color(0.79f, 0.88f, 0.05f, 1);
}
}
/// <summary>
/// #BFFF00 R:75% G:100% B:0%
/// </summary>
public static Color Bitter_lime
{
get
{
return new Color(0.75f, 1f, 0f, 1);
}
}
/// <summary>
/// #FE6F5E R:100% G:44% B:37%
/// </summary>
public static Color Bittersweet
{
get
{
return new Color(1f, 0.44f, 0.37f, 1);
}
}
/// <summary>
/// #BF4F51 R:75% G:31% B:32%
/// </summary>
public static Color Bittersweet_shimmer
{
get
{
return new Color(0.75f, 0.31f, 0.32f, 1);
}
}
/// <summary>
/// #000000 R:0% G:0% B:0%
/// </summary>
public static Color Black
{
get
{
return new Color(0f, 0f, 0f, 1);
}
}
/// <summary>
/// #3D0C02 R:24% G:5% B:1%
/// </summary>
public static Color Black_bean
{
get
{
return new Color(0.24f, 0.05f, 0.01f, 1);
}
}
/// <summary>
/// #1B1811 R:11% G:9% B:7%
/// </summary>
public static Color Black_chocolate
{
get
{
return new Color(0.11f, 0.09f, 0.07f, 1);
}
}
/// <summary>
/// #3B2F2F R:23% G:18% B:18%
/// </summary>
public static Color Black_coffee
{
get
{
return new Color(0.23f, 0.18f, 0.18f, 1);
}
}
/// <summary>
/// #54626F R:33% G:38% B:44%
/// </summary>
public static Color Black_coral
{
get
{
return new Color(0.33f, 0.38f, 0.44f, 1);
}
}
/// <summary>
/// #3B3C36 R:23% G:24% B:21%
/// </summary>
public static Color Black_olive
{
get
{
return new Color(0.23f, 0.24f, 0.21f, 1);
}
}
/// <summary>
/// #BFAFB2 R:75% G:69% B:70%
/// </summary>
public static Color Black_Shadows
{
get
{
return new Color(0.75f, 0.69f, 0.7f, 1);
}
}
/// <summary>
/// #FFEBCD R:100% G:92% B:80%
/// </summary>
public static Color Blanched_almond
{
get
{
return new Color(1f, 0.92f, 0.8f, 1);
}
}
/// <summary>
/// #A57164 R:65% G:44% B:39%
/// </summary>
public static Color Blast_off_bronze
{
get
{
return new Color(0.65f, 0.44f, 0.39f, 1);
}
}
/// <summary>
/// #318CE7 R:19% G:55% B:91%
/// </summary>
public static Color Bleu_de_France
{
get
{
return new Color(0.19f, 0.55f, 0.91f, 1);
}
}
/// <summary>
/// #ACE5EE R:67% G:90% B:93%
/// </summary>
public static Color Blizzard_blue
{
get
{
return new Color(0.67f, 0.9f, 0.93f, 1);
}
}
/// <summary>
/// #FAF0BE R:98% G:94% B:75%
/// </summary>
public static Color Blond
{
get
{
return new Color(0.98f, 0.94f, 0.75f, 1);
}
}
/// <summary>
/// #660000 R:40% G:0% B:0%
/// </summary>
public static Color Blood_red
{
get
{
return new Color(0.4f, 0f, 0f, 1);
}
}
/// <summary>
/// #0000FF R:0% G:0% B:100%
/// </summary>
public static Color Blue
{
get
{
return new Color(0f, 0f, 1f, 1);
}
}
/// <summary>
/// #1F75FE R:12% G:46% B:100%
/// </summary>
public static Color Blue_Crayola
{
get
{
return new Color(0.12f, 0.46f, 1f, 1);
}
}
/// <summary>
/// #0093AF R:0% G:58% B:69%
/// </summary>
public static Color Blue_Munsell
{
get
{
return new Color(0f, 0.58f, 0.69f, 1);
}
}
/// <summary>
/// #0087BD R:0% G:53% B:74%
/// </summary>
public static Color Blue_NCS
{
get
{
return new Color(0f, 0.53f, 0.74f, 1);
}
}
/// <summary>
/// #0018A8 R:0% G:9% B:66%
/// </summary>
public static Color Blue_Pantone
{
get
{
return new Color(0f, 0.09f, 0.66f, 1);
}
}
/// <summary>
/// #333399 R:20% G:20% B:60%
/// </summary>
public static Color Blue_pigment
{
get
{
return new Color(0.2f, 0.2f, 0.6f, 1);
}
}
/// <summary>
/// #0247FE R:1% G:28% B:100%
/// </summary>
public static Color Blue_RYB
{
get
{
return new Color(0.01f, 0.28f, 1f, 1);
}
}
/// <summary>
/// #A2A2D0 R:64% G:64% B:82%
/// </summary>
public static Color Blue_bell
{
get
{
return new Color(0.64f, 0.64f, 0.82f, 1);
}
}
/// <summary>
/// #6699CC R:40% G:60% B:80%
/// </summary>
public static Color Blue_gray
{
get
{
return new Color(0.4f, 0.6f, 0.8f, 1);
}
}
/// <summary>
/// #0D98BA R:5% G:60% B:73%
/// </summary>
public static Color Blue_green
{
get
{
return new Color(0.05f, 0.6f, 0.73f, 1);
}
}
/// <summary>
/// #064E40 R:2% G:31% B:25%
/// </summary>
public static Color Blue_green_color_wheel
{
get
{
return new Color(0.02f, 0.31f, 0.25f, 1);
}
}
/// <summary>
/// #5DADEC R:36% G:68% B:93%
/// </summary>
public static Color Blue_jeans
{
get
{
return new Color(0.36f, 0.68f, 0.93f, 1);
}
}
/// <summary>
/// #126180 R:7% G:38% B:50%
/// </summary>
public static Color Blue_sapphire
{
get
{
return new Color(0.07f, 0.38f, 0.5f, 1);
}
}
/// <summary>
/// #8A2BE2 R:54% G:17% B:89%
/// </summary>
public static Color Blue_violet
{
get
{
return new Color(0.54f, 0.17f, 0.89f, 1);
}
}
/// <summary>
/// #7366BD R:45% G:40% B:74%
/// </summary>
public static Color Blue_violet_Crayola
{
get
{
return new Color(0.45f, 0.4f, 0.74f, 1);
}
}
/// <summary>
/// #4D1A7F R:30% G:10% B:50%
/// </summary>
public static Color Blue_violet_color_wheel
{
get
{
return new Color(0.3f, 0.1f, 0.5f, 1);
}
}
/// <summary>
/// #5072A7 R:31% G:45% B:65%
/// </summary>
public static Color Blue_yonder
{
get
{
return new Color(0.31f, 0.45f, 0.65f, 1);
}
}
/// <summary>
/// #3C69E7 R:24% G:41% B:91%
/// </summary>
public static Color Bluetiful
{
get
{
return new Color(0.24f, 0.41f, 0.91f, 1);
}
}
/// <summary>
/// #DE5D83 R:87% G:36% B:51%
/// </summary>
public static Color Blush
{
get
{
return new Color(0.87f, 0.36f, 0.51f, 1);
}
}
/// <summary>
/// #79443B R:47% G:27% B:23%
/// </summary>
public static Color Bole
{
get
{
return new Color(0.47f, 0.27f, 0.23f, 1);
}
}
/// <summary>
/// #0095B6 R:0% G:58% B:71%
/// </summary>
public static Color Bondi_blue
{
get
{
return new Color(0f, 0.58f, 0.71f, 1);
}
}
/// <summary>
/// #E3DAC9 R:89% G:85% B:79%
/// </summary>
public static Color Bone
{
get
{
return new Color(0.89f, 0.85f, 0.79f, 1);
}
}
/// <summary>
/// #006A4E R:0% G:42% B:31%
/// </summary>
public static Color Bottle_green
{
get
{
return new Color(0f, 0.42f, 0.31f, 1);
}
}
/// <summary>
/// #87413F R:53% G:25% B:25%
/// </summary>
public static Color Brandy
{
get
{
return new Color(0.53f, 0.25f, 0.25f, 1);
}
}
/// <summary>
/// #CB4154 R:80% G:25% B:33%
/// </summary>
public static Color Brick_red
{
get
{
return new Color(0.8f, 0.25f, 0.33f, 1);
}
}
/// <summary>
/// #66FF00 R:40% G:100% B:0%
/// </summary>
public static Color Bright_green
{
get
{
return new Color(0.4f, 1f, 0f, 1);
}
}
/// <summary>
/// #D891EF R:85% G:57% B:94%
/// </summary>
public static Color Bright_lilac
{
get
{
return new Color(0.85f, 0.57f, 0.94f, 1);
}
}
/// <summary>
/// #C32148 R:76% G:13% B:28%
/// </summary>
public static Color Bright_maroon
{
get
{
return new Color(0.76f, 0.13f, 0.28f, 1);
}
}
/// <summary>
/// #1974D2 R:10% G:45% B:82%
/// </summary>
public static Color Bright_navy_blue
{
get
{
return new Color(0.1f, 0.45f, 0.82f, 1);
}
}
/// <summary>
/// #FFAA1D R:100% G:67% B:11%
/// </summary>
public static Color Bright_yellow_Crayola
{
get
{
return new Color(1f, 0.67f, 0.11f, 1);
}
}
/// <summary>
/// #FF55A3 R:100% G:33% B:64%
/// </summary>
public static Color Brilliant_rose
{
get
{
return new Color(1f, 0.33f, 0.64f, 1);
}
}
/// <summary>
/// #FB607F R:98% G:38% B:50%
/// </summary>
public static Color Brink_pink
{
get
{
return new Color(0.98f, 0.38f, 0.5f, 1);
}
}
/// <summary>
/// #004225 R:0% G:26% B:15%
/// </summary>
public static Color British_racing_green
{
get
{
return new Color(0f, 0.26f, 0.15f, 1);
}
}
/// <summary>
/// #CD7F32 R:80% G:50% B:20%
/// </summary>
public static Color Bronze
{
get
{
return new Color(0.8f, 0.5f, 0.2f, 1);
}
}
/// <summary>
/// #88540B R:53% G:33% B:4%
/// </summary>
public static Color Brown
{
get
{
return new Color(0.53f, 0.33f, 0.04f, 1);
}
}
/// <summary>
/// #AF6E4D R:69% G:43% B:30%
/// </summary>
public static Color Brown_sugar
{
get
{
return new Color(0.69f, 0.43f, 0.3f, 1);
}
}
/// <summary>
/// #1B4D3E R:11% G:30% B:24%
/// </summary>
public static Color Brunswick_green
{
get
{
return new Color(0.11f, 0.3f, 0.24f, 1);
}
}
/// <summary>
/// #E7FEFF R:91% G:100% B:100%
/// </summary>
public static Color Bubbles
{
get
{
return new Color(0.91f, 1f, 1f, 1);
}
}
/// <summary>
/// #7BB661 R:48% G:71% B:38%
/// </summary>
public static Color Bud_green
{
get
{
return new Color(0.48f, 0.71f, 0.38f, 1);
}
}
/// <summary>
/// #F0DC82 R:94% G:86% B:51%
/// </summary>
public static Color Buff
{
get
{
return new Color(0.94f, 0.86f, 0.51f, 1);
}
}
/// <summary>
/// #800020 R:50% G:0% B:13%
/// </summary>
public static Color Burgundy
{
get
{
return new Color(0.5f, 0f, 0.13f, 1);
}
}
/// <summary>
/// #DEB887 R:87% G:72% B:53%
/// </summary>
public static Color Burlywood
{
get
{
return new Color(0.87f, 0.72f, 0.53f, 1);
}
}
/// <summary>
/// #A17A74 R:63% G:48% B:45%
/// </summary>
public static Color Burnished_brown
{
get
{
return new Color(0.63f, 0.48f, 0.45f, 1);
}
}
/// <summary>
/// #CC5500 R:80% G:33% B:0%
/// </summary>
public static Color Burnt_orange
{
get
{
return new Color(0.8f, 0.33f, 0f, 1);
}
}
/// <summary>
/// #E97451 R:91% G:45% B:32%
/// </summary>
public static Color Burnt_sienna
{
get
{
return new Color(0.91f, 0.45f, 0.32f, 1);
}
}
/// <summary>
/// #8A3324 R:54% G:20% B:14%
/// </summary>
public static Color Burnt_umber
{
get
{
return new Color(0.54f, 0.2f, 0.14f, 1);
}
}
/// <summary>
/// #BD33A4 R:74% G:20% B:64%
/// </summary>
public static Color Byzantine
{
get
{
return new Color(0.74f, 0.2f, 0.64f, 1);
}
}
/// <summary>
/// #702963 R:44% G:16% B:39%
/// </summary>
public static Color Byzantium
{
get
{
return new Color(0.44f, 0.16f, 0.39f, 1);
}
}
/// <summary>
/// #536872 R:33% G:41% B:45%
/// </summary>
public static Color Cadet
{
get
{
return new Color(0.33f, 0.41f, 0.45f, 1);
}
}
/// <summary>
/// #5F9EA0 R:37% G:62% B:63%
/// </summary>
public static Color Cadet_blue
{
get
{
return new Color(0.37f, 0.62f, 0.63f, 1);
}
}
/// <summary>
/// #A9B2C3 R:66% G:70% B:76%
/// </summary>
public static Color Cadet_blue_Crayola
{
get
{
return new Color(0.66f, 0.7f, 0.76f, 1);
}
}
/// <summary>
/// #91A3B0 R:57% G:64% B:69%
/// </summary>
public static Color Cadet_grey
{
get
{
return new Color(0.57f, 0.64f, 0.69f, 1);
}
}
/// <summary>
/// #006B3C R:0% G:42% B:24%
/// </summary>
public static Color Cadmium_green
{
get
{
return new Color(0f, 0.42f, 0.24f, 1);
}
}
/// <summary>
/// #ED872D R:93% G:53% B:18%
/// </summary>
public static Color Cadmium_orange
{
get
{
return new Color(0.93f, 0.53f, 0.18f, 1);
}
}
/// <summary>
/// #E30022 R:89% G:0% B:13%
/// </summary>
public static Color Cadmium_red
{
get
{
return new Color(0.89f, 0f, 0.13f, 1);
}
}
/// <summary>
/// #FFF600 R:100% G:96% B:0%
/// </summary>
public static Color Cadmium_yellow
{
get
{
return new Color(1f, 0.96f, 0f, 1);
}
}
/// <summary>
/// #A67B5B R:65% G:48% B:36%
/// </summary>
public static Color Café_au_lait
{
get
{
return new Color(0.65f, 0.48f, 0.36f, 1);
}
}
/// <summary>
/// #4B3621 R:29% G:21% B:13%
/// </summary>
public static Color Café_noir
{
get
{
return new Color(0.29f, 0.21f, 0.13f, 1);
}
}
/// <summary>
/// #A3C1AD R:64% G:76% B:68%
/// </summary>
public static Color Cambridge_blue
{
get
{
return new Color(0.64f, 0.76f, 0.68f, 1);
}
}
/// <summary>
/// #C19A6B R:76% G:60% B:42%
/// </summary>
public static Color Camel
{
get
{
return new Color(0.76f, 0.6f, 0.42f, 1);
}
}
/// <summary>
/// #EFBBCC R:94% G:73% B:80%
/// </summary>
public static Color Cameo_pink
{
get
{
return new Color(0.94f, 0.73f, 0.8f, 1);
}
}
/// <summary>
/// #FFFF99 R:100% G:100% B:60%
/// </summary>
public static Color Canary
{
get
{
return new Color(1f, 1f, 0.6f, 1);
}
}
/// <summary>
/// #FFEF00 R:100% G:94% B:0%
/// </summary>
public static Color Canary_yellow
{
get
{
return new Color(1f, 0.94f, 0f, 1);
}
}
/// <summary>
/// #FF0800 R:100% G:3% B:0%
/// </summary>
public static Color Candy_apple_red
{
get
{
return new Color(1f, 0.03f, 0f, 1);
}
}
/// <summary>
/// #E4717A R:89% G:44% B:48%
/// </summary>
public static Color Candy_pink
{
get
{
return new Color(0.89f, 0.44f, 0.48f, 1);
}
}
/// <summary>
/// #00BFFF R:0% G:75% B:100%
/// </summary>
public static Color Capri
{
get
{
return new Color(0f, 0.75f, 1f, 1);
}
}
/// <summary>
/// #592720 R:35% G:15% B:13%
/// </summary>
public static Color Caput_mortuum
{
get
{
return new Color(0.35f, 0.15f, 0.13f, 1);
}
}
/// <summary>
/// #C41E3A R:77% G:12% B:23%
/// </summary>
public static Color Cardinal
{
get
{
return new Color(0.77f, 0.12f, 0.23f, 1);
}
}
/// <summary>
/// #00CC99 R:0% G:80% B:60%
/// </summary>
public static Color Caribbean_green
{
get
{
return new Color(0f, 0.8f, 0.6f, 1);
}
}
/// <summary>
/// #960018 R:59% G:0% B:9%
/// </summary>
public static Color Carmine
{
get
{
return new Color(0.59f, 0f, 0.09f, 1);
}
}
/// <summary>
/// #D70040 R:84% G:0% B:25%
/// </summary>
public static Color Carmine_MandP
{
get
{
return new Color(0.84f, 0f, 0.25f, 1);
}
}
/// <summary>
/// #FFA6C9 R:100% G:65% B:79%
/// </summary>
public static Color Carnation_pink
{
get
{
return new Color(1f, 0.65f, 0.79f, 1);
}
}
/// <summary>
/// #B31B1B R:70% G:11% B:11%
/// </summary>
public static Color Carnelian
{
get
{
return new Color(0.7f, 0.11f, 0.11f, 1);
}
}
/// <summary>
/// #56A0D3 R:34% G:63% B:83%
/// </summary>
public static Color Carolina_blue
{
get
{
return new Color(0.34f, 0.63f, 0.83f, 1);
}
}
/// <summary>
/// #ED9121 R:93% G:57% B:13%
/// </summary>
public static Color Carrot_orange
{
get
{
return new Color(0.93f, 0.57f, 0.13f, 1);
}
}
/// <summary>
/// #00563F R:0% G:34% B:25%
/// </summary>
public static Color Castleton_green
{
get
{
return new Color(0f, 0.34f, 0.25f, 1);
}
}
/// <summary>
/// #703642 R:44% G:21% B:26%
/// </summary>
public static Color Catawba
{
get
{
return new Color(0.44f, 0.21f, 0.26f, 1);
}
}
/// <summary>
/// #C95A49 R:79% G:35% B:29%
/// </summary>
public static Color Cedar_Chest
{
get
{
return new Color(0.79f, 0.35f, 0.29f, 1);
}
}
/// <summary>
/// #ACE1AF R:67% G:88% B:69%
/// </summary>
public static Color Celadon
{
get
{
return new Color(0.67f, 0.88f, 0.69f, 1);
}
}
/// <summary>
/// #007BA7 R:0% G:48% B:65%
/// </summary>
public static Color Celadon_blue
{
get
{
return new Color(0f, 0.48f, 0.65f, 1);
}
}
/// <summary>
/// #2F847C R:18% G:52% B:49%
/// </summary>
public static Color Celadon_green
{
get
{
return new Color(0.18f, 0.52f, 0.49f, 1);
}
}
/// <summary>
/// #B2FFFF R:70% G:100% B:100%
/// </summary>
public static Color Celeste
{
get
{
return new Color(0.7f, 1f, 1f, 1);
}
}
/// <summary>
/// #246BCE R:14% G:42% B:81%
/// </summary>
public static Color Celtic_blue
{
get
{
return new Color(0.14f, 0.42f, 0.81f, 1);
}
}
/// <summary>
/// #DE3163 R:87% G:19% B:39%
/// </summary>
public static Color Cerise
{
get
{
return new Color(0.87f, 0.19f, 0.39f, 1);
}
}
/// <summary>
/// #007BA7 R:0% G:48% B:65%
/// </summary>
public static Color Cerulean
{
get
{
return new Color(0f, 0.48f, 0.65f, 1);
}
}
/// <summary>
/// #2A52BE R:16% G:32% B:75%
/// </summary>
public static Color Cerulean_blue
{
get
{
return new Color(0.16f, 0.32f, 0.75f, 1);
}
}
/// <summary>
/// #6D9BC3 R:43% G:61% B:76%
/// </summary>
public static Color Cerulean_frost
{
get
{
return new Color(0.43f, 0.61f, 0.76f, 1);
}
}
/// <summary>
/// #1DACD6 R:11% G:67% B:84%
/// </summary>
public static Color Cerulean_Crayola
{
get
{
return new Color(0.11f, 0.67f, 0.84f, 1);
}
}
/// <summary>
/// #007AA5 R:0% G:48% B:65%
/// </summary>
public static Color CG_blue
{
get
{
return new Color(0f, 0.48f, 0.65f, 1);
}
}
/// <summary>
/// #E03C31 R:88% G:24% B:19%
/// </summary>
public static Color CG_red
{
get
{
return new Color(0.88f, 0.24f, 0.19f, 1);
}
}
/// <summary>
/// #F7E7CE R:97% G:91% B:81%
/// </summary>
public static Color Champagne
{
get
{
return new Color(0.97f, 0.91f, 0.81f, 1);
}
}
/// <summary>
/// #F1DDCF R:95% G:87% B:81%
/// </summary>
public static Color Champagne_pink
{
get
{
return new Color(0.95f, 0.87f, 0.81f, 1);
}
}
/// <summary>
/// #36454F R:21% G:27% B:31%
/// </summary>
public static Color Charcoal
{
get
{
return new Color(0.21f, 0.27f, 0.31f, 1);
}
}
/// <summary>
/// #232B2B R:14% G:17% B:17%
/// </summary>
public static Color Charleston_green
{
get
{
return new Color(0.14f, 0.17f, 0.17f, 1);
}
}
/// <summary>
/// #E68FAC R:90% G:56% B:67%
/// </summary>
public static Color Charm_pink
{
get
{
return new Color(0.9f, 0.56f, 0.67f, 1);
}
}
/// <summary>
/// #DFFF00 R:87% G:100% B:0%
/// </summary>
public static Color Chartreuse_traditional
{
get
{
return new Color(0.87f, 1f, 0f, 1);
}
}
/// <summary>
/// #7FFF00 R:50% G:100% B:0%
/// </summary>
public static Color Chartreuse_web
{
get
{
return new Color(0.5f, 1f, 0f, 1);
}
}
/// <summary>
/// #FFB7C5 R:100% G:72% B:77%
/// </summary>
public static Color Cherry_blossom_pink
{
get
{
return new Color(1f, 0.72f, 0.77f, 1);
}
}
/// <summary>
/// #954535 R:58% G:27% B:21%
/// </summary>
public static Color Chestnut
{
get
{
return new Color(0.58f, 0.27f, 0.21f, 1);
}
}
/// <summary>
/// #DE6FA1 R:87% G:44% B:63%
/// </summary>
public static Color China_pink
{
get
{
return new Color(0.87f, 0.44f, 0.63f, 1);
}
}
/// <summary>
/// #A8516E R:66% G:32% B:43%
/// </summary>
public static Color China_rose
{
get
{
return new Color(0.66f, 0.32f, 0.43f, 1);
}
}
/// <summary>
/// #AA381E R:67% G:22% B:12%
/// </summary>
public static Color Chinese_red
{
get
{
return new Color(0.67f, 0.22f, 0.12f, 1);
}
}
/// <summary>
/// #856088 R:52% G:38% B:53%
/// </summary>
public static Color Chinese_violet
{
get
{
return new Color(0.52f, 0.38f, 0.53f, 1);
}
}
/// <summary>
/// #FFB200 R:100% G:70% B:0%
/// </summary>
public static Color Chinese_yellow
{
get
{
return new Color(1f, 0.7f, 0f, 1);
}
}
/// <summary>
/// #7B3F00 R:48% G:25% B:0%
/// </summary>
public static Color Chocolate_traditional
{
get
{
return new Color(0.48f, 0.25f, 0f, 1);
}
}
/// <summary>
/// #D2691E R:82% G:41% B:12%
/// </summary>
public static Color Chocolate_web
{
get
{
return new Color(0.82f, 0.41f, 0.12f, 1);
}
}
/// <summary>
/// #FFA700 R:100% G:65% B:0%
/// </summary>
public static Color Chrome_yellow
{
get
{
return new Color(1f, 0.65f, 0f, 1);
}
}
/// <summary>
/// #98817B R:60% G:51% B:48%
/// </summary>
public static Color Cinereous
{
get
{
return new Color(0.6f, 0.51f, 0.48f, 1);
}
}
/// <summary>
/// #E34234 R:89% G:26% B:20%
/// </summary>
public static Color Cinnabar
{
get
{
return new Color(0.89f, 0.26f, 0.2f, 1);
}
}
/// <summary>
/// #CD607E R:80% G:38% B:49%
/// </summary>
public static Color Cinnamon_Satin
{
get
{
return new Color(0.8f, 0.38f, 0.49f, 1);
}
}
/// <summary>
/// #E4D00A R:89% G:82% B:4%
/// </summary>
public static Color Citrine
{
get
{
return new Color(0.89f, 0.82f, 0.04f, 1);
}
}
/// <summary>
/// #9FA91F R:62% G:66% B:12%
/// </summary>
public static Color Citron
{
get
{
return new Color(0.62f, 0.66f, 0.12f, 1);
}
}
/// <summary>
/// #7F1734 R:50% G:9% B:20%
/// </summary>
public static Color Claret
{
get
{
return new Color(0.5f, 0.09f, 0.2f, 1);
}
}
/// <summary>
/// #0047AB R:0% G:28% B:67%
/// </summary>
public static Color Cobalt_blue
{
get
{
return new Color(0f, 0.28f, 0.67f, 1);
}
}
/// <summary>
/// #D2691E R:82% G:41% B:12%
/// </summary>
public static Color Cocoa_brown
{
get
{
return new Color(0.82f, 0.41f, 0.12f, 1);
}
}
/// <summary>
/// #6F4E37 R:44% G:31% B:22%
/// </summary>
public static Color Coffee
{
get
{
return new Color(0.44f, 0.31f, 0.22f, 1);
}
}
/// <summary>
/// #B9D9EB R:73% G:85% B:92%
/// </summary>
public static Color Columbia_Blue
{
get
{
return new Color(0.73f, 0.85f, 0.92f, 1);
}
}
/// <summary>
/// #F88379 R:97% G:51% B:47%
/// </summary>
public static Color Congo_pink
{
get
{
return new Color(0.97f, 0.51f, 0.47f, 1);
}
}
/// <summary>
/// #8C92AC R:55% G:57% B:67%
/// </summary>
public static Color Cool_grey
{
get
{
return new Color(0.55f, 0.57f, 0.67f, 1);
}
}
/// <summary>
/// #B87333 R:72% G:45% B:20%
/// </summary>
public static Color Copper
{
get
{
return new Color(0.72f, 0.45f, 0.2f, 1);
}
}
/// <summary>
/// #DA8A67 R:85% G:54% B:40%
/// </summary>
public static Color Copper_Crayola
{
get
{
return new Color(0.85f, 0.54f, 0.4f, 1);
}
}
/// <summary>
/// #AD6F69 R:68% G:44% B:41%
/// </summary>
public static Color Copper_penny
{
get
{
return new Color(0.68f, 0.44f, 0.41f, 1);
}
}
/// <summary>
/// #CB6D51 R:80% G:43% B:32%
/// </summary>
public static Color Copper_red
{
get
{
return new Color(0.8f, 0.43f, 0.32f, 1);
}
}
/// <summary>
/// #996666 R:60% G:40% B:40%
/// </summary>
public static Color Copper_rose
{
get
{
return new Color(0.6f, 0.4f, 0.4f, 1);
}
}
/// <summary>
/// #FF3800 R:100% G:22% B:0%
/// </summary>
public static Color Coquelicot
{
get
{
return new Color(1f, 0.22f, 0f, 1);
}
}
/// <summary>
/// #FF7F50 R:100% G:50% B:31%
/// </summary>
public static Color Coral
{
get
{
return new Color(1f, 0.5f, 0.31f, 1);
}
}
/// <summary>
/// #F88379 R:97% G:51% B:47%
/// </summary>
public static Color Coral_pink
{
get
{
return new Color(0.97f, 0.51f, 0.47f, 1);
}
}
/// <summary>
/// #893F45 R:54% G:25% B:27%
/// </summary>
public static Color Cordovan
{
get
{
return new Color(0.54f, 0.25f, 0.27f, 1);
}
}
/// <summary>
/// #FBEC5D R:98% G:93% B:36%
/// </summary>
public static Color Corn
{
get
{
return new Color(0.98f, 0.93f, 0.36f, 1);
}
}
/// <summary>
/// #6495ED R:39% G:58% B:93%
/// </summary>
public static Color Cornflower_blue
{
get
{
return new Color(0.39f, 0.58f, 0.93f, 1);
}
}
/// <summary>
/// #FFF8DC R:100% G:97% B:86%
/// </summary>
public static Color Cornsilk
{
get
{
return new Color(1f, 0.97f, 0.86f, 1);
}
}
/// <summary>
/// #2E2D88 R:18% G:18% B:53%
/// </summary>
public static Color Cosmic_cobalt
{
get
{
return new Color(0.18f, 0.18f, 0.53f, 1);
}
}
/// <summary>
/// #FFF8E7 R:100% G:97% B:91%
/// </summary>
public static Color Cosmic_latte
{
get
{
return new Color(1f, 0.97f, 0.91f, 1);
}
}
/// <summary>
/// #FEBCFF R:100% G:74% B:100%
/// </summary>
public static Color Cosmos_pink
{
get
{
return new Color(1f, 0.74f, 1f, 1);
}
}
/// <summary>
/// #81613C R:51% G:38% B:24%
/// </summary>
public static Color Coyote_brown
{
get
{
return new Color(0.51f, 0.38f, 0.24f, 1);
}
}
/// <summary>
/// #FFBCD9 R:100% G:74% B:85%
/// </summary>
public static Color Cotton_candy
{
get
{
return new Color(1f, 0.74f, 0.85f, 1);
}
}
/// <summary>
/// #FFFDD0 R:100% G:99% B:82%
/// </summary>
public static Color Cream
{
get
{
return new Color(1f, 0.99f, 0.82f, 1);
}
}
/// <summary>
/// #DC143C R:86% G:8% B:24%
/// </summary>
public static Color Crimson
{
get
{
return new Color(0.86f, 0.08f, 0.24f, 1);
}
}
/// <summary>
/// #9E1B32 R:62% G:11% B:20%
/// </summary>
public static Color Crimson_UA
{
get
{
return new Color(0.62f, 0.11f, 0.2f, 1);
}
}
/// <summary>
/// #F5F5F5 R:96% G:96% B:96%
/// </summary>
public static Color Cultured
{
get
{
return new Color(0.96f, 0.96f, 0.96f, 1);
}
}
/// <summary>
/// #00FFFF R:0% G:100% B:100%
/// </summary>
public static Color Cyan
{
get
{
return new Color(0f, 1f, 1f, 1);
}
}
/// <summary>
/// #00B7EB R:0% G:72% B:92%
/// </summary>
public static Color Cyan_process
{
get
{
return new Color(0f, 0.72f, 0.92f, 1);
}
}
/// <summary>
/// #58427C R:35% G:26% B:49%
/// </summary>
public static Color Cyber_grape
{
get
{
return new Color(0.35f, 0.26f, 0.49f, 1);
}
}
/// <summary>
/// #FFD300 R:100% G:83% B:0%
/// </summary>
public static Color Cyber_yellow
{
get
{
return new Color(1f, 0.83f, 0f, 1);
}
}
/// <summary>
/// #F56FA1 R:96% G:44% B:63%
/// </summary>
public static Color Cyclamen
{
get
{
return new Color(0.96f, 0.44f, 0.63f, 1);
}
}
/// <summary>
/// #666699 R:40% G:40% B:60%
/// </summary>
public static Color Dark_blue_gray
{
get
{
return new Color(0.4f, 0.4f, 0.6f, 1);
}
}
/// <summary>
/// #654321 R:40% G:26% B:13%
/// </summary>
public static Color Dark_brown
{
get
{
return new Color(0.4f, 0.26f, 0.13f, 1);
}
}
/// <summary>
/// #5D3954 R:36% G:22% B:33%
/// </summary>
public static Color Dark_byzantium
{
get
{
return new Color(0.36f, 0.22f, 0.33f, 1);
}
}
/// <summary>
/// #26428B R:15% G:26% B:55%
/// </summary>
public static Color Dark_cornflower_blue
{
get
{
return new Color(0.15f, 0.26f, 0.55f, 1);
}
}
/// <summary>
/// #008B8B R:0% G:55% B:55%
/// </summary>
public static Color Dark_cyan
{
get
{
return new Color(0f, 0.55f, 0.55f, 1);
}
}
/// <summary>
/// #536878 R:33% G:41% B:47%
/// </summary>
public static Color Dark_electric_blue
{
get
{
return new Color(0.33f, 0.41f, 0.47f, 1);
}
}
/// <summary>
/// #B8860B R:72% G:53% B:4%
/// </summary>
public static Color Dark_goldenrod
{
get
{
return new Color(0.72f, 0.53f, 0.04f, 1);
}
}
/// <summary>
/// #013220 R:0% G:20% B:13%
/// </summary>
public static Color Dark_green
{
get
{
return new Color(0f, 0.2f, 0.13f, 1);
}
}
/// <summary>
/// #006400 R:0% G:39% B:0%
/// </summary>
public static Color Dark_green_X11
{
get
{
return new Color(0f, 0.39f, 0f, 1);
}
}
/// <summary>
/// #1A2421 R:10% G:14% B:13%
/// </summary>
public static Color Dark_jungle_green
{
get
{
return new Color(0.1f, 0.14f, 0.13f, 1);
}
}
/// <summary>
/// #BDB76B R:74% G:72% B:42%
/// </summary>
public static Color Dark_khaki
{
get
{
return new Color(0.74f, 0.72f, 0.42f, 1);
}
}
/// <summary>
/// #483C32 R:28% G:24% B:20%
/// </summary>
public static Color Dark_lava
{
get
{
return new Color(0.28f, 0.24f, 0.2f, 1);
}
}
/// <summary>
/// #534B4F R:33% G:29% B:31%
/// </summary>
public static Color Dark_liver
{
get
{
return new Color(0.33f, 0.29f, 0.31f, 1);
}
}
/// <summary>
/// #543D37 R:33% G:24% B:22%
/// </summary>
public static Color Dark_liver_horses
{
get
{
return new Color(0.33f, 0.24f, 0.22f, 1);
}
}
/// <summary>
/// #8B008B R:55% G:0% B:55%
/// </summary>
public static Color Dark_magenta
{
get
{
return new Color(0.55f, 0f, 0.55f, 1);
}
}
/// <summary>
/// #4A5D23 R:29% G:36% B:14%
/// </summary>
public static Color Dark_moss_green
{
get
{
return new Color(0.29f, 0.36f, 0.14f, 1);
}
}
/// <summary>
/// #556B2F R:33% G:42% B:18%
/// </summary>
public static Color Dark_olive_green
{
get
{
return new Color(0.33f, 0.42f, 0.18f, 1);
}
}
/// <summary>
/// #FF8C00 R:100% G:55% B:0%
/// </summary>
public static Color Dark_orange
{
get
{
return new Color(1f, 0.55f, 0f, 1);
}
}
/// <summary>
/// #9932CC R:60% G:20% B:80%
/// </summary>
public static Color Dark_orchid
{
get
{
return new Color(0.6f, 0.2f, 0.8f, 1);
}
}
/// <summary>
/// #03C03C R:1% G:75% B:24%
/// </summary>
public static Color Dark_pastel_green
{
get
{
return new Color(0.01f, 0.75f, 0.24f, 1);
}
}
/// <summary>
/// #301934 R:19% G:10% B:20%
/// </summary>
public static Color Dark_purple
{
get
{
return new Color(0.19f, 0.1f, 0.2f, 1);
}
}
/// <summary>
/// #8B0000 R:55% G:0% B:0%
/// </summary>
public static Color Dark_red
{
get
{
return new Color(0.55f, 0f, 0f, 1);
}
}
/// <summary>
/// #E9967A R:91% G:59% B:48%
/// </summary>
public static Color Dark_salmon
{
get
{
return new Color(0.91f, 0.59f, 0.48f, 1);
}
}
/// <summary>
/// #8FBC8F R:56% G:74% B:56%
/// </summary>
public static Color Dark_sea_green
{
get
{
return new Color(0.56f, 0.74f, 0.56f, 1);
}
}
/// <summary>
/// #3C1414 R:24% G:8% B:8%
/// </summary>
public static Color Dark_sienna
{
get
{
return new Color(0.24f, 0.08f, 0.08f, 1);
}
}
/// <summary>
/// #8CBED6 R:55% G:75% B:84%
/// </summary>
public static Color Dark_sky_blue
{
get
{
return new Color(0.55f, 0.75f, 0.84f, 1);
}
}
/// <summary>
/// #483D8B R:28% G:24% B:55%
/// </summary>
public static Color Dark_slate_blue
{
get
{
return new Color(0.28f, 0.24f, 0.55f, 1);
}
}
/// <summary>
/// #2F4F4F R:18% G:31% B:31%
/// </summary>
public static Color Dark_slate_gray
{
get
{
return new Color(0.18f, 0.31f, 0.31f, 1);
}
}
/// <summary>
/// #177245 R:9% G:45% B:27%
/// </summary>
public static Color Dark_spring_green
{
get
{
return new Color(0.09f, 0.45f, 0.27f, 1);
}
}
/// <summary>
/// #00CED1 R:0% G:81% B:82%
/// </summary>
public static Color Dark_turquoise
{
get
{
return new Color(0f, 0.81f, 0.82f, 1);
}
}
/// <summary>
/// #9400D3 R:58% G:0% B:83%
/// </summary>
public static Color Dark_violet
{
get
{
return new Color(0.58f, 0f, 0.83f, 1);
}
}
/// <summary>
/// #00703C R:0% G:44% B:24%
/// </summary>
public static Color Dartmouth_green
{
get
{
return new Color(0f, 0.44f, 0.24f, 1);
}
}
/// <summary>
/// #555555 R:33% G:33% B:33%
/// </summary>
public static Color Davys_grey
{
get
{
return new Color(0.33f, 0.33f, 0.33f, 1);
}
}
/// <summary>
/// #DA3287 R:85% G:20% B:53%
/// </summary>
public static Color Deep_cerise
{
get
{
return new Color(0.85f, 0.2f, 0.53f, 1);
}
}
/// <summary>
/// #FAD6A5 R:98% G:84% B:65%
/// </summary>
public static Color Deep_champagne
{
get
{
return new Color(0.98f, 0.84f, 0.65f, 1);
}
}
/// <summary>
/// #B94E48 R:73% G:31% B:28%
/// </summary>
public static Color Deep_chestnut
{
get
{
return new Color(0.73f, 0.31f, 0.28f, 1);
}
}
/// <summary>
/// #004B49 R:0% G:29% B:29%
/// </summary>
public static Color Deep_jungle_green
{
get
{
return new Color(0f, 0.29f, 0.29f, 1);
}
}
/// <summary>
/// #FF1493 R:100% G:8% B:58%
/// </summary>
public static Color Deep_pink
{
get
{
return new Color(1f, 0.08f, 0.58f, 1);
}
}
/// <summary>
/// #FF9933 R:100% G:60% B:20%
/// </summary>
public static Color Deep_saffron
{
get
{
return new Color(1f, 0.6f, 0.2f, 1);
}
}
/// <summary>
/// #00BFFF R:0% G:75% B:100%
/// </summary>
public static Color Deep_sky_blue
{
get
{
return new Color(0f, 0.75f, 1f, 1);
}
}
/// <summary>
/// #4A646C R:29% G:39% B:42%
/// </summary>
public static Color Deep_Space_Sparkle
{
get
{
return new Color(0.29f, 0.39f, 0.42f, 1);
}
}
/// <summary>
/// #7E5E60 R:49% G:37% B:38%
/// </summary>
public static Color Deep_taupe
{
get
{
return new Color(0.49f, 0.37f, 0.38f, 1);
}
}
/// <summary>
/// #1560BD R:8% G:38% B:74%
/// </summary>
public static Color Denim
{
get
{
return new Color(0.08f, 0.38f, 0.74f, 1);
}
}
/// <summary>
/// #2243B6 R:13% G:26% B:71%
/// </summary>
public static Color Denim_blue
{
get
{
return new Color(0.13f, 0.26f, 0.71f, 1);
}
}
/// <summary>
/// #C19A6B R:76% G:60% B:42%
/// </summary>
public static Color Desert
{
get
{
return new Color(0.76f, 0.6f, 0.42f, 1);
}
}
/// <summary>
/// #EDC9AF R:93% G:79% B:69%
/// </summary>
public static Color Desert_sand
{
get
{
return new Color(0.93f, 0.79f, 0.69f, 1);
}
}
/// <summary>
/// #696969 R:41% G:41% B:41%
/// </summary>
public static Color Dim_gray
{
get
{
return new Color(0.41f, 0.41f, 0.41f, 1);
}
}
/// <summary>
/// #C53151 R:77% G:19% B:32%
/// </summary>
public static Color Dingy_Dungeon
{
get
{
return new Color(0.77f, 0.19f, 0.32f, 1);
}
}
/// <summary>
/// #1E90FF R:12% G:56% B:100%
/// </summary>
public static Color Dodger_blue
{
get
{
return new Color(0.12f, 0.56f, 1f, 1);
}
}
/// <summary>
/// #D71868 R:84% G:9% B:41%
/// </summary>
public static Color Dogwood_rose
{
get
{
return new Color(0.84f, 0.09f, 0.41f, 1);
}
}
/// <summary>
/// #967117 R:59% G:44% B:9%
/// </summary>
public static Color Drab
{
get
{
return new Color(0.59f, 0.44f, 0.09f, 1);
}
}
/// <summary>
/// #00009C R:0% G:0% B:61%
/// </summary>
public static Color Duke_blue
{
get
{
return new Color(0f, 0f, 0.61f, 1);
}
}
/// <summary>
/// #EFDFBB R:94% G:87% B:73%
/// </summary>
public static Color Dutch_white
{
get
{
return new Color(0.94f, 0.87f, 0.73f, 1);
}
}
/// <summary>
/// #E1A95F R:88% G:66% B:37%
/// </summary>
public static Color Earth_yellow
{
get
{
return new Color(0.88f, 0.66f, 0.37f, 1);
}
}
/// <summary>
/// #555D50 R:33% G:36% B:31%
/// </summary>
public static Color Ebony
{
get
{
return new Color(0.33f, 0.36f, 0.31f, 1);
}
}
/// <summary>
/// #C2B280 R:76% G:70% B:50%
/// </summary>
public static Color Ecru
{
get
{
return new Color(0.76f, 0.7f, 0.5f, 1);
}
}
/// <summary>
/// #1B1B1B R:11% G:11% B:11%
/// </summary>
public static Color Eerie_black
{
get
{
return new Color(0.11f, 0.11f, 0.11f, 1);
}
}
/// <summary>
/// #614051 R:38% G:25% B:32%
/// </summary>
public static Color Eggplant
{
get
{
return new Color(0.38f, 0.25f, 0.32f, 1);
}
}
/// <summary>
/// #F0EAD6 R:94% G:92% B:84%
/// </summary>
public static Color Eggshell
{
get
{
return new Color(0.94f, 0.92f, 0.84f, 1);
}
}
/// <summary>
/// #1034A6 R:6% G:20% B:65%
/// </summary>
public static Color Egyptian_blue
{
get
{
return new Color(0.06f, 0.2f, 0.65f, 1);
}
}
/// <summary>
/// #7DF9FF R:49% G:98% B:100%
/// </summary>
public static Color Electric_blue
{
get
{
return new Color(0.49f, 0.98f, 1f, 1);
}
}
/// <summary>
/// #00FF00 R:0% G:100% B:0%
/// </summary>
public static Color Electric_green
{
get
{
return new Color(0f, 1f, 0f, 1);
}
}
/// <summary>
/// #6F00FF R:44% G:0% B:100%
/// </summary>
public static Color Electric_indigo
{
get
{
return new Color(0.44f, 0f, 1f, 1);
}
}
/// <summary>
/// #CCFF00 R:80% G:100% B:0%
/// </summary>
public static Color Electric_lime
{
get
{
return new Color(0.8f, 1f, 0f, 1);
}
}
/// <summary>
/// #BF00FF R:75% G:0% B:100%
/// </summary>
public static Color Electric_purple
{
get
{
return new Color(0.75f, 0f, 1f, 1);
}
}
/// <summary>
/// #8F00FF R:56% G:0% B:100%
/// </summary>
public static Color Electric_violet
{
get
{
return new Color(0.56f, 0f, 1f, 1);
}
}
/// <summary>
/// #50C878 R:31% G:78% B:47%
/// </summary>
public static Color Emerald
{
get
{
return new Color(0.31f, 0.78f, 0.47f, 1);
}
}
/// <summary>
/// #6C3082 R:42% G:19% B:51%
/// </summary>
public static Color Eminence
{
get
{
return new Color(0.42f, 0.19f, 0.51f, 1);
}
}
/// <summary>
/// #1B4D3E R:11% G:30% B:24%
/// </summary>
public static Color English_green
{
get
{
return new Color(0.11f, 0.3f, 0.24f, 1);
}
}
/// <summary>
/// #B48395 R:71% G:51% B:58%
/// </summary>
public static Color English_lavender
{
get
{
return new Color(0.71f, 0.51f, 0.58f, 1);
}
}
/// <summary>
/// #AB4B52 R:67% G:29% B:32%
/// </summary>
public static Color English_red
{
get
{
return new Color(0.67f, 0.29f, 0.32f, 1);
}
}
/// <summary>
/// #CC474B R:80% G:28% B:29%
/// </summary>
public static Color English_vermillion
{
get
{
return new Color(0.8f, 0.28f, 0.29f, 1);
}
}
/// <summary>
/// #563C5C R:34% G:24% B:36%
/// </summary>
public static Color English_violet
{
get
{
return new Color(0.34f, 0.24f, 0.36f, 1);
}
}
/// <summary>
/// #00FF40 R:0% G:100% B:25%
/// </summary>
public static Color Erin
{
get
{
return new Color(0f, 1f, 0.25f, 1);
}
}
/// <summary>
/// #96C8A2 R:59% G:78% B:64%
/// </summary>
public static Color Eton_blue
{
get
{
return new Color(0.59f, 0.78f, 0.64f, 1);
}
}
/// <summary>
/// #C19A6B R:76% G:60% B:42%
/// </summary>
public static Color Fallow
{
get
{
return new Color(0.76f, 0.6f, 0.42f, 1);
}
}
/// <summary>
/// #801818 R:50% G:9% B:9%
/// </summary>
public static Color Falu_red
{
get
{
return new Color(0.5f, 0.09f, 0.09f, 1);
}
}
/// <summary>
/// #B53389 R:71% G:20% B:54%
/// </summary>
public static Color Fandango
{
get
{
return new Color(0.71f, 0.2f, 0.54f, 1);
}
}
/// <summary>
/// #DE5285 R:87% G:32% B:52%
/// </summary>
public static Color Fandango_pink
{
get
{
return new Color(0.87f, 0.32f, 0.52f, 1);
}
}
/// <summary>
/// #F400A1 R:96% G:0% B:63%
/// </summary>
public static Color Fashion_fuchsia
{
get
{
return new Color(0.96f, 0f, 0.63f, 1);
}
}
/// <summary>
/// #E5AA70 R:90% G:67% B:44%
/// </summary>
public static Color Fawn
{
get
{
return new Color(0.9f, 0.67f, 0.44f, 1);
}
}
/// <summary>
/// #4D5D53 R:30% G:36% B:33%
/// </summary>
public static Color Feldgrau
{
get
{
return new Color(0.3f, 0.36f, 0.33f, 1);
}
}
/// <summary>
/// #4F7942 R:31% G:47% B:26%
/// </summary>
public static Color Fern_green
{
get
{
return new Color(0.31f, 0.47f, 0.26f, 1);
}
}
/// <summary>
/// #6C541E R:42% G:33% B:12%
/// </summary>
public static Color Field_drab
{
get
{
return new Color(0.42f, 0.33f, 0.12f, 1);
}
}
/// <summary>
/// #FF5470 R:100% G:33% B:44%
/// </summary>
public static Color Fiery_rose
{
get
{
return new Color(1f, 0.33f, 0.44f, 1);
}
}
/// <summary>
/// #B22222 R:70% G:13% B:13%
/// </summary>
public static Color Firebrick
{
get
{
return new Color(0.7f, 0.13f, 0.13f, 1);
}
}
/// <summary>
/// #CE2029 R:81% G:13% B:16%
/// </summary>
public static Color Fire_engine_red
{
get
{
return new Color(0.81f, 0.13f, 0.16f, 1);
}
}
/// <summary>
/// #E95C4B R:91% G:36% B:29%
/// </summary>
public static Color Fire_opal
{
get
{
return new Color(0.91f, 0.36f, 0.29f, 1);
}
}
/// <summary>
/// #E25822 R:89% G:35% B:13%
/// </summary>
public static Color Flame
{
get
{
return new Color(0.89f, 0.35f, 0.13f, 1);
}
}
/// <summary>
/// #EEDC82 R:93% G:86% B:51%
/// </summary>
public static Color Flax
{
get
{
return new Color(0.93f, 0.86f, 0.51f, 1);
}
}
/// <summary>
/// #FFE9D1 R:100% G:91% B:82%
/// </summary>
public static Color Flesh
{
get
{
return new Color(1f, 0.91f, 0.82f, 1);
}
}
/// <summary>
/// #0063dc R:13% G:42% B:84%
/// </summary>
public static Color Flickr_Blue
{
get
{
return new Color(0.13f, 0.42f, 0.84f, 1);
}
}
/// <summary>
/// #FB0081 R:98% G:0% B:51%
/// </summary>
public static Color Flickr_Pink
{
get
{
return new Color(0.98f, 0f, 0.51f, 1);
}
}
/// <summary>
/// #A2006D R:64% G:0% B:43%
/// </summary>
public static Color Flirt
{
get
{
return new Color(0.64f, 0f, 0.43f, 1);
}
}
/// <summary>
/// #FFFAF0 R:100% G:98% B:94%
/// </summary>
public static Color Floral_white
{
get
{
return new Color(1f, 0.98f, 0.94f, 1);
}
}
/// <summary>
/// #15F4EE R:8% G:96% B:93%
/// </summary>
public static Color Fluorescent_blue
{
get
{
return new Color(0.08f, 0.96f, 0.93f, 1);
}
}
/// <summary>
/// #5FA777 R:37% G:65% B:47%
/// </summary>
public static Color Forest_green_Crayola
{
get
{
return new Color(0.37f, 0.65f, 0.47f, 1);
}
}
/// <summary>
/// #014421 R:0% G:27% B:13%
/// </summary>
public static Color Forest_green_traditional
{
get
{
return new Color(0f, 0.27f, 0.13f, 1);
}
}
/// <summary>
/// #228B22 R:13% G:55% B:13%
/// </summary>
public static Color Forest_green_web
{
get
{
return new Color(0.13f, 0.55f, 0.13f, 1);
}
}
/// <summary>
/// #A67B5B R:65% G:48% B:36%
/// </summary>
public static Color French_beige
{
get
{
return new Color(0.65f, 0.48f, 0.36f, 1);
}
}
/// <summary>
/// #856D4D R:52% G:43% B:30%
/// </summary>
public static Color French_bistre
{
get
{
return new Color(0.52f, 0.43f, 0.3f, 1);
}
}
/// <summary>
/// #0072BB R:0% G:45% B:73%
/// </summary>
public static Color French_blue
{
get
{
return new Color(0f, 0.45f, 0.73f, 1);
}
}
/// <summary>
/// #FD3F92 R:99% G:25% B:57%
/// </summary>
public static Color French_fuchsia
{
get
{
return new Color(0.99f, 0.25f, 0.57f, 1);
}
}
/// <summary>
/// #86608E R:53% G:38% B:56%
/// </summary>
public static Color French_lilac
{
get
{
return new Color(0.53f, 0.38f, 0.56f, 1);
}
}
/// <summary>
/// #9EFD38 R:62% G:99% B:22%
/// </summary>
public static Color French_lime
{
get
{
return new Color(0.62f, 0.99f, 0.22f, 1);
}
}
/// <summary>
/// #D473D4 R:83% G:45% B:83%
/// </summary>
public static Color French_mauve
{
get
{
return new Color(0.83f, 0.45f, 0.83f, 1);
}
}
/// <summary>
/// #FD6C9E R:99% G:42% B:62%
/// </summary>
public static Color French_pink
{
get
{
return new Color(0.99f, 0.42f, 0.62f, 1);
}
}
/// <summary>
/// #C72C48 R:78% G:17% B:28%
/// </summary>
public static Color French_raspberry
{
get
{
return new Color(0.78f, 0.17f, 0.28f, 1);
}
}
/// <summary>
/// #F64A8A R:96% G:29% B:54%
/// </summary>
public static Color French_rose
{
get
{
return new Color(0.96f, 0.29f, 0.54f, 1);
}
}
/// <summary>
/// #77B5FE R:47% G:71% B:100%
/// </summary>
public static Color French_sky_blue
{
get
{
return new Color(0.47f, 0.71f, 1f, 1);
}
}
/// <summary>
/// #8806CE R:53% G:2% B:81%
/// </summary>
public static Color French_violet
{
get
{
return new Color(0.53f, 0.02f, 0.81f, 1);
}
}
/// <summary>
/// #E936A7 R:91% G:21% B:65%
/// </summary>
public static Color Frostbite
{
get
{
return new Color(0.91f, 0.21f, 0.65f, 1);
}
}
/// <summary>
/// #FF00FF R:100% G:0% B:100%
/// </summary>
public static Color Fuchsia
{
get
{
return new Color(1f, 0f, 1f, 1);
}
}
/// <summary>
/// #C154C1 R:76% G:33% B:76%
/// </summary>
public static Color Fuchsia_Crayola
{
get
{
return new Color(0.76f, 0.33f, 0.76f, 1);
}
}
/// <summary>
/// #CC397B R:80% G:22% B:48%
/// </summary>
public static Color Fuchsia_purple
{
get
{
return new Color(0.8f, 0.22f, 0.48f, 1);
}
}
/// <summary>
/// #C74375 R:78% G:26% B:46%
/// </summary>
public static Color Fuchsia_rose
{
get
{
return new Color(0.78f, 0.26f, 0.46f, 1);
}
}
/// <summary>
/// #E48400 R:89% G:52% B:0%
/// </summary>
public static Color Fulvous
{
get
{
return new Color(0.89f, 0.52f, 0f, 1);
}
}
/// <summary>
/// #CC6666 R:80% G:40% B:40%
/// </summary>
public static Color Fuzzy_Wuzzy
{
get
{
return new Color(0.8f, 0.4f, 0.4f, 1);
}
}
/// <summary>
/// #DCDCDC R:86% G:86% B:86%
/// </summary>
public static Color Gainsboro
{
get
{
return new Color(0.86f, 0.86f, 0.86f, 1);
}
}
/// <summary>
/// #E49B0F R:89% G:61% B:6%
/// </summary>
public static Color Gamboge
{
get
{
return new Color(0.89f, 0.61f, 0.06f, 1);
}
}
/// <summary>
/// #007F66 R:0% G:50% B:40%
/// </summary>
public static Color Generic_viridian
{
get
{
return new Color(0f, 0.5f, 0.4f, 1);
}
}
/// <summary>
/// #F8F8FF R:97% G:97% B:100%
/// </summary>
public static Color Ghost_white
{
get
{
return new Color(0.97f, 0.97f, 1f, 1);
}
}
/// <summary>
/// #6082B6 R:38% G:51% B:71%
/// </summary>
public static Color Glaucous
{
get
{
return new Color(0.38f, 0.51f, 0.71f, 1);
}
}
/// <summary>
/// #AB92B3 R:67% G:57% B:70%
/// </summary>
public static Color Glossy_grape
{
get
{
return new Color(0.67f, 0.57f, 0.7f, 1);
}
}
/// <summary>
/// #00AB66 R:0% G:67% B:40%
/// </summary>
public static Color GO_green
{
get
{
return new Color(0f, 0.67f, 0.4f, 1);
}
}
/// <summary>
/// #A57C00 R:65% G:49% B:0%
/// </summary>
public static Color Gold
{
get
{
return new Color(0.65f, 0.49f, 0f, 1);
}
}
/// <summary>
/// #D4AF37 R:83% G:69% B:22%
/// </summary>
public static Color Gold_metallic
{
get
{
return new Color(0.83f, 0.69f, 0.22f, 1);
}
}
/// <summary>
/// #FFD700 R:100% G:84% B:0%
/// </summary>
public static Color Gold_web_Golden
{
get
{
return new Color(1f, 0.84f, 0f, 1);
}
}
/// <summary>
/// #E6BE8A R:90% G:75% B:54%
/// </summary>
public static Color Gold_Crayola
{
get
{
return new Color(0.9f, 0.75f, 0.54f, 1);
}
}
/// <summary>
/// #85754E R:52% G:46% B:31%
/// </summary>
public static Color Gold_Fusion
{
get
{
return new Color(0.52f, 0.46f, 0.31f, 1);
}
}
/// <summary>
/// #996515 R:60% G:40% B:8%
/// </summary>
public static Color Golden_brown
{
get
{
return new Color(0.6f, 0.4f, 0.08f, 1);
}
}
/// <summary>
/// #FCC200 R:99% G:76% B:0%
/// </summary>
public static Color Golden_poppy
{
get
{
return new Color(0.99f, 0.76f, 0f, 1);
}
}
/// <summary>
/// #FFDF00 R:100% G:87% B:0%
/// </summary>
public static Color Golden_yellow
{
get
{
return new Color(1f, 0.87f, 0f, 1);
}
}
/// <summary>
/// #DAA520 R:85% G:65% B:13%
/// </summary>
public static Color Goldenrod
{
get
{
return new Color(0.85f, 0.65f, 0.13f, 1);
}
}
/// <summary>
/// #676767 R:40% G:40% B:40%
/// </summary>
public static Color Granite_gray
{
get
{
return new Color(0.4f, 0.4f, 0.4f, 1);
}
}
/// <summary>
/// #A8E4A0 R:66% G:89% B:63%
/// </summary>
public static Color Granny_Smith_apple
{
get
{
return new Color(0.66f, 0.89f, 0.63f, 1);
}
}
/// <summary>
/// #808080 R:50% G:50% B:50%
/// </summary>
public static Color Gray_HTML_CSS_gray
{
get
{
return new Color(0.5f, 0.5f, 0.5f, 1);
}
}
/// <summary>
/// #BEBEBE R:75% G:75% B:75%
/// </summary>
public static Color Gray_X11_gray
{
get
{
return new Color(0.75f, 0.75f, 0.75f, 1);
}
}
/// <summary>
/// #00FF00 R:0% G:100% B:0%
/// </summary>
public static Color Green
{
get
{
return new Color(0f, 1f, 0f, 1);
}
}
/// <summary>
/// #00FF00 R:0% G:100% B:0%
/// </summary>
public static Color Green_X11__color_wheel
{
get
{
return new Color(0f, 1f, 0f, 1);
}
}
/// <summary>
/// #1CAC78 R:11% G:67% B:47%
/// </summary>
public static Color Green_Crayola
{
get
{
return new Color(0.11f, 0.67f, 0.47f, 1);
}
}
/// <summary>
/// #008000 R:0% G:50% B:0%
/// </summary>
public static Color Green_HTML_CSS_color
{
get
{
return new Color(0f, 0.5f, 0f, 1);
}
}
/// <summary>
/// #00A877 R:0% G:66% B:47%
/// </summary>
public static Color Green_Munsell
{
get
{
return new Color(0f, 0.66f, 0.47f, 1);
}
}
/// <summary>
/// #009F6B R:0% G:62% B:42%
/// </summary>
public static Color Green_NCS
{
get
{
return new Color(0f, 0.62f, 0.42f, 1);
}
}
/// <summary>
/// #00AD43 R:0% G:68% B:26%
/// </summary>
public static Color Green_Pantone
{
get
{
return new Color(0f, 0.68f, 0.26f, 1);
}
}
/// <summary>
/// #00A550 R:0% G:65% B:31%
/// </summary>
public static Color Green_pigment
{
get
{
return new Color(0f, 0.65f, 0.31f, 1);
}
}
/// <summary>
/// #66B032 R:40% G:69% B:20%
/// </summary>
public static Color Green_RYB
{
get
{
return new Color(0.4f, 0.69f, 0.2f, 1);
}
}
/// <summary>
/// #1164B4 R:7% G:39% B:71%
/// </summary>
public static Color Green_blue
{
get
{
return new Color(0.07f, 0.39f, 0.71f, 1);
}
}
/// <summary>
/// #2887C8 R:16% G:53% B:78%
/// </summary>
public static Color Green_blue_Crayola
{
get
{
return new Color(0.16f, 0.53f, 0.78f, 1);
}
}
/// <summary>
/// #009966 R:0% G:60% B:40%
/// </summary>
public static Color Green_cyan
{
get
{
return new Color(0f, 0.6f, 0.4f, 1);
}
}
/// <summary>
/// #A7F432 R:65% G:96% B:20%
/// </summary>
public static Color Green_Lizard
{
get
{
return new Color(0.65f, 0.96f, 0.2f, 1);
}
}
/// <summary>
/// #6EAEA1 R:43% G:68% B:63%
/// </summary>
public static Color Green_Sheen
{
get
{
return new Color(0.43f, 0.68f, 0.63f, 1);
}
}
/// <summary>
/// #ADFF2F R:68% G:100% B:18%
/// </summary>
public static Color Green_yellow
{
get
{
return new Color(0.68f, 1f, 0.18f, 1);
}
}
/// <summary>
/// #F0E891 R:94% G:91% B:57%
/// </summary>
public static Color Green_yellow_Crayola
{
get
{
return new Color(0.94f, 0.91f, 0.57f, 1);
}
}
/// <summary>
/// #A99A86 R:66% G:60% B:53%
/// </summary>
public static Color Grullo
{
get
{
return new Color(0.66f, 0.6f, 0.53f, 1);
}
}
/// <summary>
/// #2a3439 R:16% G:20% B:22%
/// </summary>
public static Color Gunmetal
{
get
{
return new Color(0.16f, 0.2f, 0.22f, 1);
}
}
/// <summary>
/// #446CCF R:27% G:42% B:81%
/// </summary>
public static Color Han_blue
{
get
{
return new Color(0.27f, 0.42f, 0.81f, 1);
}
}
/// <summary>
/// #5218FA R:32% G:9% B:98%
/// </summary>
public static Color Han_purple
{
get
{
return new Color(0.32f, 0.09f, 0.98f, 1);
}
}
/// <summary>
/// #E9D66B R:91% G:84% B:42%
/// </summary>
public static Color Hansa_yellow
{
get
{
return new Color(0.91f, 0.84f, 0.42f, 1);
}
}
/// <summary>
/// #3FFF00 R:25% G:100% B:0%
/// </summary>
public static Color Harlequin
{
get
{
return new Color(0.25f, 1f, 0f, 1);
}
}
/// <summary>
/// #DA9100 R:85% G:57% B:0%
/// </summary>
public static Color Harvest_gold
{
get
{
return new Color(0.85f, 0.57f, 0f, 1);
}
}
/// <summary>
/// #FF7A00 R:100% G:48% B:0%
/// </summary>
public static Color Heat_Wave
{
get
{
return new Color(1f, 0.48f, 0f, 1);
}
}
/// <summary>
/// #DF73FF R:87% G:45% B:100%
/// </summary>
public static Color Heliotrope
{
get
{
return new Color(0.87f, 0.45f, 1f, 1);
}
}
/// <summary>
/// #AA98A9 R:67% G:60% B:66%
/// </summary>
public static Color Heliotrope_gray
{
get
{
return new Color(0.67f, 0.6f, 0.66f, 1);
}
}
/// <summary>
/// #F400A1 R:96% G:0% B:63%
/// </summary>
public static Color Hollywood_cerise
{
get
{
return new Color(0.96f, 0f, 0.63f, 1);
}
}
/// <summary>
/// #F0FFF0 R:94% G:100% B:94%
/// </summary>
public static Color Honeydew
{
get
{
return new Color(0.94f, 1f, 0.94f, 1);
}
}
/// <summary>
/// #006DB0 R:0% G:43% B:69%
/// </summary>
public static Color Honolulu_blue
{
get
{
return new Color(0f, 0.43f, 0.69f, 1);
}
}
/// <summary>
/// #49796B R:29% G:47% B:42%
/// </summary>
public static Color Hookers_green
{
get
{
return new Color(0.29f, 0.47f, 0.42f, 1);
}
}
/// <summary>
/// #FF1DCE R:100% G:11% B:81%
/// </summary>
public static Color Hot_magenta
{
get
{
return new Color(1f, 0.11f, 0.81f, 1);
}
}
/// <summary>
/// #FF69B4 R:100% G:41% B:71%
/// </summary>
public static Color Hot_pink
{
get
{
return new Color(1f, 0.41f, 0.71f, 1);
}
}
/// <summary>
/// #355E3B R:21% G:37% B:23%
/// </summary>
public static Color Hunter_green
{
get
{
return new Color(0.21f, 0.37f, 0.23f, 1);
}
}
/// <summary>
/// #71A6D2 R:44% G:65% B:82%
/// </summary>
public static Color Iceberg
{
get
{
return new Color(0.44f, 0.65f, 0.82f, 1);
}
}
/// <summary>
/// #FCF75E R:99% G:97% B:37%
/// </summary>
public static Color Icterine
{
get
{
return new Color(0.99f, 0.97f, 0.37f, 1);
}
}
/// <summary>
/// #319177 R:19% G:57% B:47%
/// </summary>
public static Color Illuminating_emerald
{
get
{
return new Color(0.19f, 0.57f, 0.47f, 1);
}
}
/// <summary>
/// #ED2939 R:93% G:16% B:22%
/// </summary>
public static Color Imperial_red
{
get
{
return new Color(0.93f, 0.16f, 0.22f, 1);
}
}
/// <summary>
/// #B2EC5D R:70% G:93% B:36%
/// </summary>
public static Color Inchworm
{
get
{
return new Color(0.7f, 0.93f, 0.36f, 1);
}
}
/// <summary>
/// #4C516D R:30% G:32% B:43%
/// </summary>
public static Color Independence
{
get
{
return new Color(0.3f, 0.32f, 0.43f, 1);
}
}
/// <summary>
/// #138808 R:7% G:53% B:3%
/// </summary>
public static Color India_green
{
get
{
return new Color(0.07f, 0.53f, 0.03f, 1);
}
}
/// <summary>
/// #CD5C5C R:80% G:36% B:36%
/// </summary>
public static Color Indian_red
{
get
{
return new Color(0.8f, 0.36f, 0.36f, 1);
}
}
/// <summary>
/// #E3A857 R:89% G:66% B:34%
/// </summary>
public static Color Indian_yellow
{
get
{
return new Color(0.89f, 0.66f, 0.34f, 1);
}
}
/// <summary>
/// #4B0082 R:29% G:0% B:51%
/// </summary>
public static Color Indigo
{
get
{
return new Color(0.29f, 0f, 0.51f, 1);
}
}
/// <summary>
/// #00416A R:0% G:25% B:42%
/// </summary>
public static Color Indigo_blue
{
get
{
return new Color(0f, 0.25f, 0.42f, 1);
}
}
/// <summary>
/// #091F92 R:4% G:12% B:57%
/// </summary>
public static Color Indigo_dye
{
get
{
return new Color(0.04f, 0.12f, 0.57f, 1);
}
}
/// <summary>
/// #002FA7 R:0% G:18% B:65%
/// </summary>
public static Color International_Klein_Blue
{
get
{
return new Color(0f, 0.18f, 0.65f, 1);
}
}
/// <summary>
/// #FF4F00 R:100% G:31% B:0%
/// </summary>
public static Color International_orange_aerospace
{
get
{
return new Color(1f, 0.31f, 0f, 1);
}
}
/// <summary>
/// #BA160C R:73% G:9% B:5%
/// </summary>
public static Color International_orange_engineering
{
get
{
return new Color(0.73f, 0.09f, 0.05f, 1);
}
}
/// <summary>
/// #C0362C R:75% G:21% B:17%
/// </summary>
public static Color International_orange_Golden_Gate_Bridge
{
get
{
return new Color(0.75f, 0.21f, 0.17f, 1);
}
}
/// <summary>
/// #5A4FCF R:35% G:31% B:81%
/// </summary>
public static Color Iris
{
get
{
return new Color(0.35f, 0.31f, 0.81f, 1);
}
}
/// <summary>
/// #B3446C R:70% G:27% B:42%
/// </summary>
public static Color Irresistible
{
get
{
return new Color(0.7f, 0.27f, 0.42f, 1);
}
}
/// <summary>
/// #F4F0EC R:96% G:94% B:93%
/// </summary>
public static Color Isabelline
{
get
{
return new Color(0.96f, 0.94f, 0.93f, 1);
}
}
/// <summary>
/// #009000 R:0% G:56% B:0%
/// </summary>
public static Color Islamic_green
{
get
{
return new Color(0f, 0.56f, 0f, 1);
}
}
/// <summary>
/// #B2FFFF R:70% G:100% B:100%
/// </summary>
public static Color Italian_sky_blue
{
get
{
return new Color(0.7f, 1f, 1f, 1);
}
}
/// <summary>
/// #FFFFF0 R:100% G:100% B:94%
/// </summary>
public static Color Ivory
{
get
{
return new Color(1f, 1f, 0.94f, 1);
}
}
/// <summary>
/// #00A86B R:0% G:66% B:42%
/// </summary>
public static Color Jade
{
get
{
return new Color(0f, 0.66f, 0.42f, 1);
}
}
/// <summary>
/// #F8DE7E R:97% G:87% B:49%
/// </summary>
public static Color Jasmine
{
get
{
return new Color(0.97f, 0.87f, 0.49f, 1);
}
}
/// <summary>
/// #A50B5E R:65% G:4% B:37%
/// </summary>
public static Color Jazzberry_jam
{
get
{
return new Color(0.65f, 0.04f, 0.37f, 1);
}
}
/// <summary>
/// #343434 R:20% G:20% B:20%
/// </summary>
public static Color Jet
{
get
{
return new Color(0.2f, 0.2f, 0.2f, 1);
}
}
/// <summary>
/// #F4CA16 R:96% G:79% B:9%
/// </summary>
public static Color Jonquil
{
get
{
return new Color(0.96f, 0.79f, 0.09f, 1);
}
}
/// <summary>
/// #BDDA57 R:74% G:85% B:34%
/// </summary>
public static Color June_bud
{
get
{
return new Color(0.74f, 0.85f, 0.34f, 1);
}
}
/// <summary>
/// #29AB87 R:16% G:67% B:53%
/// </summary>
public static Color Jungle_green
{
get
{
return new Color(0.16f, 0.67f, 0.53f, 1);
}
}
/// <summary>
/// #4CBB17 R:30% G:73% B:9%
/// </summary>
public static Color Kelly_green
{
get
{
return new Color(0.3f, 0.73f, 0.09f, 1);
}
}
/// <summary>
/// #3AB09E R:23% G:69% B:62%
/// </summary>
public static Color Keppel
{
get
{
return new Color(0.23f, 0.69f, 0.62f, 1);
}
}
/// <summary>
/// #E8F48C R:91% G:96% B:55%
/// </summary>
public static Color Key_lime
{
get
{
return new Color(0.91f, 0.96f, 0.55f, 1);
}
}
/// <summary>
/// #C3B091 R:76% G:69% B:57%
/// </summary>
public static Color Khaki_HTML_CSS_Khaki
{
get
{
return new Color(0.76f, 0.69f, 0.57f, 1);
}
}
/// <summary>
/// #F0E68C R:94% G:90% B:55%
/// </summary>
public static Color Khaki_X11_Light_khaki
{
get
{
return new Color(0.94f, 0.9f, 0.55f, 1);
}
}
/// <summary>
/// #882D17 R:53% G:18% B:9%
/// </summary>
public static Color Kobe
{
get
{
return new Color(0.53f, 0.18f, 0.09f, 1);
}
}
/// <summary>
/// #E79FC4 R:91% G:62% B:77%
/// </summary>
public static Color Kobi
{
get
{
return new Color(0.91f, 0.62f, 0.77f, 1);
}
}
/// <summary>
/// #6B4423 R:42% G:27% B:14%
/// </summary>
public static Color Kobicha
{
get
{
return new Color(0.42f, 0.27f, 0.14f, 1);
}
}
/// <summary>
/// #354230 R:21% G:26% B:19%
/// </summary>
public static Color Kombu_green
{
get
{
return new Color(0.21f, 0.26f, 0.19f, 1);
}
}
/// <summary>
/// #512888 R:31% G:15% B:51%
/// </summary>
public static Color KSU_purple
{
get
{
return new Color(0.31f, 0.15f, 0.51f, 1);
}
}
/// <summary>
/// #D6CADD R:84% G:79% B:87%
/// </summary>
public static Color Languid_lavender
{
get
{
return new Color(0.84f, 0.79f, 0.87f, 1);
}
}
/// <summary>
/// #26619C R:15% G:38% B:61%
/// </summary>
public static Color Lapis_lazuli
{
get
{
return new Color(0.15f, 0.38f, 0.61f, 1);
}
}
/// <summary>
/// #FFFF66 R:100% G:100% B:40%
/// </summary>
public static Color Laser_lemon
{
get
{
return new Color(1f, 1f, 0.4f, 1);
}
}
/// <summary>
/// #A9BA9D R:66% G:73% B:62%
/// </summary>
public static Color Laurel_green
{
get
{
return new Color(0.66f, 0.73f, 0.62f, 1);
}
}
/// <summary>
/// #CF1020 R:81% G:6% B:13%
/// </summary>
public static Color Lava
{
get
{
return new Color(0.81f, 0.06f, 0.13f, 1);
}
}
/// <summary>
/// #B57EDC R:71% G:49% B:86%
/// </summary>
public static Color Lavender_floral
{
get
{
return new Color(0.71f, 0.49f, 0.86f, 1);
}
}
/// <summary>
/// #E6E6FA R:90% G:90% B:98%
/// </summary>
public static Color Lavender_web
{
get
{
return new Color(0.9f, 0.9f, 0.98f, 1);
}
}
/// <summary>
/// #CCCCFF R:80% G:80% B:100%
/// </summary>
public static Color Lavender_blue
{
get
{
return new Color(0.8f, 0.8f, 1f, 1);
}
}
/// <summary>
/// #FFF0F5 R:100% G:94% B:96%
/// </summary>
public static Color Lavender_blush
{
get
{
return new Color(1f, 0.94f, 0.96f, 1);
}
}
/// <summary>
/// #C4C3D0 R:77% G:76% B:82%
/// </summary>
public static Color Lavender_gray
{
get
{
return new Color(0.77f, 0.76f, 0.82f, 1);
}
}
/// <summary>
/// #EE82EE R:93% G:51% B:93%
/// </summary>
public static Color Lavender_magenta
{
get
{
return new Color(0.93f, 0.51f, 0.93f, 1);
}
}
/// <summary>
/// #7CFC00 R:49% G:99% B:0%
/// </summary>
public static Color Lawn_green
{
get
{
return new Color(0.49f, 0.99f, 0f, 1);
}
}
/// <summary>
/// #FFF700 R:100% G:97% B:0%
/// </summary>
public static Color Lemon
{
get
{
return new Color(1f, 0.97f, 0f, 1);
}
}
/// <summary>
/// #FFFACD R:100% G:98% B:80%
/// </summary>
public static Color Lemon_chiffon
{
get
{
return new Color(1f, 0.98f, 0.8f, 1);
}
}
/// <summary>
/// #CCA01D R:80% G:63% B:11%
/// </summary>
public static Color Lemon_curry
{
get
{
return new Color(0.8f, 0.63f, 0.11f, 1);
}
}
/// <summary>
/// #FDFF00 R:99% G:100% B:0%
/// </summary>
public static Color Lemon_glacier
{
get
{
return new Color(0.99f, 1f, 0f, 1);
}
}
/// <summary>
/// #F6EABE R:96% G:92% B:75%
/// </summary>
public static Color Lemon_meringue
{
get
{
return new Color(0.96f, 0.92f, 0.75f, 1);
}
}
/// <summary>
/// #FFF44F R:100% G:96% B:31%
/// </summary>
public static Color Lemon_yellow
{
get
{
return new Color(1f, 0.96f, 0.31f, 1);
}
}
/// <summary>
/// #FFFF9F R:100% G:100% B:62%
/// </summary>
public static Color Lemon_yellow_Crayola
{
get
{
return new Color(1f, 1f, 0.62f, 1);
}
}
/// <summary>
/// #545AA7 R:33% G:35% B:65%
/// </summary>
public static Color Liberty
{
get
{
return new Color(0.33f, 0.35f, 0.65f, 1);
}
}
/// <summary>
/// #ADD8E6 R:68% G:85% B:90%
/// </summary>
public static Color Light_blue
{
get
{
return new Color(0.68f, 0.85f, 0.9f, 1);
}
}
/// <summary>
/// #F08080 R:94% G:50% B:50%
/// </summary>
public static Color Light_coral
{
get
{
return new Color(0.94f, 0.5f, 0.5f, 1);
}
}
/// <summary>
/// #93CCEA R:58% G:80% B:92%
/// </summary>
public static Color Light_cornflower_blue
{
get
{
return new Color(0.58f, 0.8f, 0.92f, 1);
}
}
/// <summary>
/// #E0FFFF R:88% G:100% B:100%
/// </summary>
public static Color Light_cyan
{
get
{
return new Color(0.88f, 1f, 1f, 1);
}
}
/// <summary>
/// #C8AD7F R:78% G:68% B:50%
/// </summary>
public static Color Light_French_beige
{
get
{
return new Color(0.78f, 0.68f, 0.5f, 1);
}
}
/// <summary>
/// #FAFAD2 R:98% G:98% B:82%
/// </summary>
public static Color Light_goldenrod_yellow
{
get
{
return new Color(0.98f, 0.98f, 0.82f, 1);
}
}
/// <summary>
/// #D3D3D3 R:83% G:83% B:83%
/// </summary>
public static Color Light_gray
{
get
{
return new Color(0.83f, 0.83f, 0.83f, 1);
}
}
/// <summary>
/// #90EE90 R:56% G:93% B:56%
/// </summary>
public static Color Light_green
{
get
{
return new Color(0.56f, 0.93f, 0.56f, 1);
}
}
/// <summary>
/// #FED8B1 R:100% G:85% B:69%
/// </summary>
public static Color Light_orange
{
get
{
return new Color(1f, 0.85f, 0.69f, 1);
}
}
/// <summary>
/// #C5CBE1 R:77% G:80% B:88%
/// </summary>
public static Color Light_periwinkle
{
get
{
return new Color(0.77f, 0.8f, 0.88f, 1);
}
}
/// <summary>
/// #FFB6C1 R:100% G:71% B:76%
/// </summary>
public static Color Light_pink
{
get
{
return new Color(1f, 0.71f, 0.76f, 1);
}
}
/// <summary>
/// #FFA07A R:100% G:63% B:48%
/// </summary>
public static Color Light_salmon
{
get
{
return new Color(1f, 0.63f, 0.48f, 1);
}
}
/// <summary>
/// #20B2AA R:13% G:70% B:67%
/// </summary>
public static Color Light_sea_green
{
get
{
return new Color(0.13f, 0.7f, 0.67f, 1);
}
}
/// <summary>
/// #87CEFA R:53% G:81% B:98%
/// </summary>
public static Color Light_sky_blue
{
get
{
return new Color(0.53f, 0.81f, 0.98f, 1);
}
}
/// <summary>
/// #778899 R:47% G:53% B:60%
/// </summary>
public static Color Light_slate_gray
{
get
{
return new Color(0.47f, 0.53f, 0.6f, 1);
}
}
/// <summary>
/// #B0C4DE R:69% G:77% B:87%
/// </summary>
public static Color Light_steel_blue
{
get
{
return new Color(0.69f, 0.77f, 0.87f, 1);
}
}
/// <summary>
/// #FFFFE0 R:100% G:100% B:88%
/// </summary>
public static Color Light_yellow
{
get
{
return new Color(1f, 1f, 0.88f, 1);
}
}
/// <summary>
/// #C8A2C8 R:78% G:64% B:78%
/// </summary>
public static Color Lilac
{
get
{
return new Color(0.78f, 0.64f, 0.78f, 1);
}
}
/// <summary>
/// #AE98AA R:68% G:60% B:67%
/// </summary>
public static Color Lilac_Luster
{
get
{
return new Color(0.68f, 0.6f, 0.67f, 1);
}
}
/// <summary>
/// #BFFF00 R:75% G:100% B:0%
/// </summary>
public static Color Lime_color_wheel
{
get
{
return new Color(0.75f, 1f, 0f, 1);
}
}
/// <summary>
/// #00FF00 R:0% G:100% B:0%
/// </summary>
public static Color Lime_web_X11_green
{
get
{
return new Color(0f, 1f, 0f, 1);
}
}
/// <summary>
/// #32CD32 R:20% G:80% B:20%
/// </summary>
public static Color Lime_green
{
get
{
return new Color(0.2f, 0.8f, 0.2f, 1);
}
}
/// <summary>
/// #195905 R:10% G:35% B:2%
/// </summary>
public static Color Lincoln_green
{
get
{
return new Color(0.1f, 0.35f, 0.02f, 1);
}
}
/// <summary>
/// #FAF0E6 R:98% G:94% B:90%
/// </summary>
public static Color Linen
{
get
{
return new Color(0.98f, 0.94f, 0.9f, 1);
}
}
/// <summary>
/// #C19A6B R:76% G:60% B:42%
/// </summary>
public static Color Lion
{
get
{
return new Color(0.76f, 0.6f, 0.42f, 1);
}
}
/// <summary>
/// #DE6FA1 R:87% G:44% B:63%
/// </summary>
public static Color Liseran_purple
{
get
{
return new Color(0.87f, 0.44f, 0.63f, 1);
}
}
/// <summary>
/// #6CA0DC R:42% G:63% B:86%
/// </summary>
public static Color Little_boy_blue
{
get
{
return new Color(0.42f, 0.63f, 0.86f, 1);
}
}
/// <summary>
/// #674C47 R:40% G:30% B:28%
/// </summary>
public static Color Liver
{
get
{
return new Color(0.4f, 0.3f, 0.28f, 1);
}
}
/// <summary>
/// #B86D29 R:72% G:43% B:16%
/// </summary>
public static Color Liver_dogs
{
get
{
return new Color(0.72f, 0.43f, 0.16f, 1);
}
}
/// <summary>
/// #6C2E1F R:42% G:18% B:12%
/// </summary>
public static Color Liver_organ
{
get
{
return new Color(0.42f, 0.18f, 0.12f, 1);
}
}
/// <summary>
/// #987456 R:60% G:45% B:34%
/// </summary>
public static Color Liver_chestnut
{
get
{
return new Color(0.6f, 0.45f, 0.34f, 1);
}
}
/// <summary>
/// #6699CC R:40% G:60% B:80%
/// </summary>
public static Color Livid
{
get
{
return new Color(0.4f, 0.6f, 0.8f, 1);
}
}
/// <summary>
/// #FFBD88 R:100% G:74% B:53%
/// </summary>
public static Color Macaroni_and_Cheese
{
get
{
return new Color(1f, 0.74f, 0.53f, 1);
}
}
/// <summary>
/// #CC3336 R:80% G:20% B:21%
/// </summary>
public static Color Madder_Lake
{
get
{
return new Color(0.8f, 0.2f, 0.21f, 1);
}
}
/// <summary>
/// #FF00FF R:100% G:0% B:100%
/// </summary>
public static Color Magenta
{
get
{
return new Color(1f, 0f, 1f, 1);
}
}
/// <summary>
/// #FF55A3 R:100% G:33% B:64%
/// </summary>
public static Color Magenta_Crayola
{
get
{
return new Color(1f, 0.33f, 0.64f, 1);
}
}
/// <summary>
/// #CA1F7B R:79% G:12% B:48%
/// </summary>
public static Color Magenta_dye
{
get
{
return new Color(0.79f, 0.12f, 0.48f, 1);
}
}
/// <summary>
/// #D0417E R:82% G:25% B:49%
/// </summary>
public static Color Magenta_Pantone
{
get
{
return new Color(0.82f, 0.25f, 0.49f, 1);
}
}
/// <summary>
/// #FF0090 R:100% G:0% B:56%
/// </summary>
public static Color Magenta_process
{
get
{
return new Color(1f, 0f, 0.56f, 1);
}
}
/// <summary>
/// #9F4576 R:62% G:27% B:46%
/// </summary>
public static Color Magenta_haze
{
get
{
return new Color(0.62f, 0.27f, 0.46f, 1);
}
}
/// <summary>
/// #AAF0D1 R:67% G:94% B:82%
/// </summary>
public static Color Magic_mint
{
get
{
return new Color(0.67f, 0.94f, 0.82f, 1);
}
}
/// <summary>
/// #F8F4FF R:97% G:96% B:100%
/// </summary>
public static Color Magnolia
{
get
{
return new Color(0.97f, 0.96f, 1f, 1);
}
}
/// <summary>
/// #C04000 R:75% G:25% B:0%
/// </summary>
public static Color Mahogany
{
get
{
return new Color(0.75f, 0.25f, 0f, 1);
}
}
/// <summary>
/// #FBEC5D R:98% G:93% B:36%
/// </summary>
public static Color Maize
{
get
{
return new Color(0.98f, 0.93f, 0.36f, 1);
}
}
/// <summary>
/// #F2C649 R:95% G:78% B:29%
/// </summary>
public static Color Maize_Crayola
{
get
{
return new Color(0.95f, 0.78f, 0.29f, 1);
}
}
/// <summary>
/// #6050DC R:38% G:31% B:86%
/// </summary>
public static Color Majorelle_blue
{
get
{
return new Color(0.38f, 0.31f, 0.86f, 1);
}
}
/// <summary>
/// #0BDA51 R:4% G:85% B:32%
/// </summary>
public static Color Malachite
{
get
{
return new Color(0.04f, 0.85f, 0.32f, 1);
}
}
/// <summary>
/// #979AAA R:59% G:60% B:67%
/// </summary>
public static Color Manatee
{
get
{
return new Color(0.59f, 0.6f, 0.67f, 1);
}
}
/// <summary>
/// #F37A48 R:95% G:48% B:28%
/// </summary>
public static Color Mandarin
{
get
{
return new Color(0.95f, 0.48f, 0.28f, 1);
}
}
/// <summary>
/// #FDBE02 R:99% G:75% B:1%
/// </summary>
public static Color Mango
{
get
{
return new Color(0.99f, 0.75f, 0.01f, 1);
}
}
/// <summary>
/// #FF8243 R:100% G:51% B:26%
/// </summary>
public static Color Mango_Tango
{
get
{
return new Color(1f, 0.51f, 0.26f, 1);
}
}
/// <summary>
/// #74C365 R:45% G:76% B:40%
/// </summary>
public static Color Mantis
{
get
{
return new Color(0.45f, 0.76f, 0.4f, 1);
}
}
/// <summary>
/// #880085 R:53% G:0% B:52%
/// </summary>
public static Color Mardi_Gras
{
get
{
return new Color(0.53f, 0f, 0.52f, 1);
}
}
/// <summary>
/// #EAA221 R:92% G:64% B:13%
/// </summary>
public static Color Marigold
{
get
{
return new Color(0.92f, 0.64f, 0.13f, 1);
}
}
/// <summary>
/// #C32148 R:76% G:13% B:28%
/// </summary>
public static Color Maroon_Crayola
{
get
{
return new Color(0.76f, 0.13f, 0.28f, 1);
}
}
/// <summary>
/// #800000 R:50% G:0% B:0%
/// </summary>
public static Color Maroon_HTML_CSS
{
get
{
return new Color(0.5f, 0f, 0f, 1);
}
}
/// <summary>
/// #B03060 R:69% G:19% B:38%
/// </summary>
public static Color Maroon_X11
{
get
{
return new Color(0.69f, 0.19f, 0.38f, 1);
}
}
/// <summary>
/// #E0B0FF R:88% G:69% B:100%
/// </summary>
public static Color Mauve
{
get
{
return new Color(0.88f, 0.69f, 1f, 1);
}
}
/// <summary>
/// #915F6D R:57% G:37% B:43%
/// </summary>
public static Color Mauve_taupe
{
get
{
return new Color(0.57f, 0.37f, 0.43f, 1);
}
}
/// <summary>
/// #EF98AA R:94% G:60% B:67%
/// </summary>
public static Color Mauvelous
{
get
{
return new Color(0.94f, 0.6f, 0.67f, 1);
}
}
/// <summary>
/// #47ABCC R:28% G:67% B:80%
/// </summary>
public static Color Maximum_blue
{
get
{
return new Color(0.28f, 0.67f, 0.8f, 1);
}
}
/// <summary>
/// #30BFBF R:19% G:75% B:75%
/// </summary>
public static Color Maximum_blue_green
{
get
{
return new Color(0.19f, 0.75f, 0.75f, 1);
}
}
/// <summary>
/// #ACACE6 R:67% G:67% B:90%
/// </summary>
public static Color Maximum_blue_purple
{
get
{
return new Color(0.67f, 0.67f, 0.9f, 1);
}
}
/// <summary>
/// #5E8C31 R:37% G:55% B:19%
/// </summary>
public static Color Maximum_green
{
get
{
return new Color(0.37f, 0.55f, 0.19f, 1);
}
}
/// <summary>
/// #D9E650 R:85% G:90% B:31%
/// </summary>
public static Color Maximum_green_yellow
{
get
{
return new Color(0.85f, 0.9f, 0.31f, 1);
}
}
/// <summary>
/// #733380 R:45% G:20% B:50%
/// </summary>
public static Color Maximum_purple
{
get
{
return new Color(0.45f, 0.2f, 0.5f, 1);
}
}
/// <summary>
/// #D92121 R:85% G:13% B:13%
/// </summary>
public static Color Maximum_red
{
get
{
return new Color(0.85f, 0.13f, 0.13f, 1);
}
}
/// <summary>
/// #A63A79 R:65% G:23% B:47%
/// </summary>
public static Color Maximum_red_purple
{
get
{
return new Color(0.65f, 0.23f, 0.47f, 1);
}
}
/// <summary>
/// #FAFA37 R:98% G:98% B:22%
/// </summary>
public static Color Maximum_yellow
{
get
{
return new Color(0.98f, 0.98f, 0.22f, 1);
}
}
/// <summary>
/// #F2BA49 R:95% G:73% B:29%
/// </summary>
public static Color Maximum_yellow_red
{
get
{
return new Color(0.95f, 0.73f, 0.29f, 1);
}
}
/// <summary>
/// #4C9141 R:30% G:57% B:25%
/// </summary>
public static Color May_green
{
get
{
return new Color(0.3f, 0.57f, 0.25f, 1);
}
}
/// <summary>
/// #73C2FB R:45% G:76% B:98%
/// </summary>
public static Color Maya_blue
{
get
{
return new Color(0.45f, 0.76f, 0.98f, 1);
}
}
/// <summary>
/// #66DDAA R:40% G:87% B:67%
/// </summary>
public static Color Medium_aquamarine
{
get
{
return new Color(0.4f, 0.87f, 0.67f, 1);
}
}
/// <summary>
/// #0000CD R:0% G:0% B:80%
/// </summary>
public static Color Medium_blue
{
get
{
return new Color(0f, 0f, 0.8f, 1);
}
}
/// <summary>
/// #E2062C R:89% G:2% B:17%
/// </summary>
public static Color Medium_candy_apple_red
{
get
{
return new Color(0.89f, 0.02f, 0.17f, 1);
}
}
/// <summary>
/// #AF4035 R:69% G:25% B:21%
/// </summary>
public static Color Medium_carmine
{
get
{
return new Color(0.69f, 0.25f, 0.21f, 1);
}
}
/// <summary>
/// #F3E5AB R:95% G:90% B:67%
/// </summary>
public static Color Medium_champagne
{
get
{
return new Color(0.95f, 0.9f, 0.67f, 1);
}
}
/// <summary>
/// #BA55D3 R:73% G:33% B:83%
/// </summary>
public static Color Medium_orchid
{
get
{
return new Color(0.73f, 0.33f, 0.83f, 1);
}
}
/// <summary>
/// #9370DB R:58% G:44% B:86%
/// </summary>
public static Color Medium_purple
{
get
{
return new Color(0.58f, 0.44f, 0.86f, 1);
}
}
/// <summary>
/// #3CB371 R:24% G:70% B:44%
/// </summary>
public static Color Medium_sea_green
{
get
{
return new Color(0.24f, 0.7f, 0.44f, 1);
}
}
/// <summary>
/// #7B68EE R:48% G:41% B:93%
/// </summary>
public static Color Medium_slate_blue
{
get
{
return new Color(0.48f, 0.41f, 0.93f, 1);
}
}
/// <summary>
/// #00FA9A R:0% G:98% B:60%
/// </summary>
public static Color Medium_spring_green
{
get
{
return new Color(0f, 0.98f, 0.6f, 1);
}
}
/// <summary>
/// #48D1CC R:28% G:82% B:80%
/// </summary>
public static Color Medium_turquoise
{
get
{
return new Color(0.28f, 0.82f, 0.8f, 1);
}
}
/// <summary>
/// #C71585 R:78% G:8% B:52%
/// </summary>
public static Color Medium_violet_red
{
get
{
return new Color(0.78f, 0.08f, 0.52f, 1);
}
}
/// <summary>
/// #F8B878 R:97% G:72% B:47%
/// </summary>
public static Color Mellow_apricot
{
get
{
return new Color(0.97f, 0.72f, 0.47f, 1);
}
}
/// <summary>
/// #F8DE7E R:97% G:87% B:49%
/// </summary>
public static Color Mellow_yellow
{
get
{
return new Color(0.97f, 0.87f, 0.49f, 1);
}
}
/// <summary>
/// #FDBCB4 R:99% G:74% B:71%
/// </summary>
public static Color Melancholy
{
get
{
return new Color(0.99f, 0.74f, 0.71f, 1);
}
}
/// <summary>
/// #FEBAAD R:100% G:73% B:68%
/// </summary>
public static Color Melon
{
get
{
return new Color(1f, 0.73f, 0.68f, 1);
}
}
/// <summary>
/// #D3AF37 R:83% G:69% B:22%
/// </summary>
public static Color Metallic_gold
{
get
{
return new Color(0.83f, 0.69f, 0.22f, 1);
}
}
/// <summary>
/// #0A7E8C R:4% G:49% B:55%
/// </summary>
public static Color Metallic_Seaweed
{
get
{
return new Color(0.04f, 0.49f, 0.55f, 1);
}
}
/// <summary>
/// #9C7C38 R:61% G:49% B:22%
/// </summary>
public static Color Metallic_Sunburst
{
get
{
return new Color(0.61f, 0.49f, 0.22f, 1);
}
}
/// <summary>
/// #E4007C R:89% G:0% B:49%
/// </summary>
public static Color Mexican_pink
{
get
{
return new Color(0.89f, 0f, 0.49f, 1);
}
}
/// <summary>
/// #7ED4E6 R:49% G:83% B:90%
/// </summary>
public static Color Middle_blue
{
get
{
return new Color(0.49f, 0.83f, 0.9f, 1);
}
}
/// <summary>
/// #8DD9CC R:55% G:85% B:80%
/// </summary>
public static Color Middle_blue_green
{
get
{
return new Color(0.55f, 0.85f, 0.8f, 1);
}
}
/// <summary>
/// #8B72BE R:55% G:45% B:75%
/// </summary>
public static Color Middle_blue_purple
{
get
{
return new Color(0.55f, 0.45f, 0.75f, 1);
}
}
/// <summary>
/// #8B8680 R:55% G:53% B:50%
/// </summary>
public static Color Middle_grey
{
get
{
return new Color(0.55f, 0.53f, 0.5f, 1);
}
}
/// <summary>
/// #4D8C57 R:30% G:55% B:34%
/// </summary>
public static Color Middle_green
{
get
{
return new Color(0.3f, 0.55f, 0.34f, 1);
}
}
/// <summary>
/// #ACBF60 R:67% G:75% B:38%
/// </summary>
public static Color Middle_green_yellow
{
get
{
return new Color(0.67f, 0.75f, 0.38f, 1);
}
}
/// <summary>
/// #D982B5 R:85% G:51% B:71%
/// </summary>
public static Color Middle_purple
{
get
{
return new Color(0.85f, 0.51f, 0.71f, 1);
}
}
/// <summary>
/// #E58E73 R:90% G:56% B:45%
/// </summary>
public static Color Middle_red
{
get
{
return new Color(0.9f, 0.56f, 0.45f, 1);
}
}
/// <summary>
/// #A55353 R:65% G:33% B:33%
/// </summary>
public static Color Middle_red_purple
{
get
{
return new Color(0.65f, 0.33f, 0.33f, 1);
}
}
/// <summary>
/// #FFEB00 R:100% G:92% B:0%
/// </summary>
public static Color Middle_yellow
{
get
{
return new Color(1f, 0.92f, 0f, 1);
}
}
/// <summary>
/// #ECB176 R:93% G:69% B:46%
/// </summary>
public static Color Middle_yellow_red
{
get
{
return new Color(0.93f, 0.69f, 0.46f, 1);
}
}
/// <summary>
/// #702670 R:44% G:15% B:44%
/// </summary>
public static Color Midnight
{
get
{
return new Color(0.44f, 0.15f, 0.44f, 1);
}
}
/// <summary>
/// #191970 R:10% G:10% B:44%
/// </summary>
public static Color Midnight_blue
{
get
{
return new Color(0.1f, 0.1f, 0.44f, 1);
}
}
/// <summary>
/// #004953 R:0% G:29% B:33%
/// </summary>
public static Color Midnight_green_eagle_green
{
get
{
return new Color(0f, 0.29f, 0.33f, 1);
}
}
/// <summary>
/// #FFC40C R:100% G:77% B:5%
/// </summary>
public static Color Mikado_yellow
{
get
{
return new Color(1f, 0.77f, 0.05f, 1);
}
}
/// <summary>
/// #FFDAE9 R:100% G:85% B:91%
/// </summary>
public static Color Mimi_pink
{
get
{
return new Color(1f, 0.85f, 0.91f, 1);
}
}
/// <summary>
/// #E3F988 R:89% G:98% B:53%
/// </summary>
public static Color Mindaro
{
get
{
return new Color(0.89f, 0.98f, 0.53f, 1);
}
}
/// <summary>
/// #36747D R:21% G:45% B:49%
/// </summary>
public static Color Ming
{
get
{
return new Color(0.21f, 0.45f, 0.49f, 1);
}
}
/// <summary>
/// #F5E050 R:96% G:86% B:31%
/// </summary>
public static Color Minion_yellow
{
get
{
return new Color(0.96f, 0.86f, 0.31f, 1);
}
}
/// <summary>
/// #3EB489 R:24% G:71% B:54%
/// </summary>
public static Color Mint
{
get
{
return new Color(0.24f, 0.71f, 0.54f, 1);
}
}
/// <summary>
/// #F5FFFA R:96% G:100% B:98%
/// </summary>
public static Color Mint_cream
{
get
{
return new Color(0.96f, 1f, 0.98f, 1);
}
}
/// <summary>
/// #98FF98 R:60% G:100% B:60%
/// </summary>
public static Color Mint_green
{
get
{
return new Color(0.6f, 1f, 0.6f, 1);
}
}
/// <summary>
/// #BBB477 R:73% G:71% B:47%
/// </summary>
public static Color Misty_moss
{
get
{
return new Color(0.73f, 0.71f, 0.47f, 1);
}
}
/// <summary>
/// #FFE4E1 R:100% G:89% B:88%
/// </summary>
public static Color Misty_rose
{
get
{
return new Color(1f, 0.89f, 0.88f, 1);
}
}
/// <summary>
/// #967117 R:59% G:44% B:9%
/// </summary>
public static Color Mode_beige
{
get
{
return new Color(0.59f, 0.44f, 0.09f, 1);
}
}
/// <summary>
/// #8DA399 R:55% G:64% B:60%
/// </summary>
public static Color Morning_blue
{
get
{
return new Color(0.55f, 0.64f, 0.6f, 1);
}
}
/// <summary>
/// #8A9A5B R:54% G:60% B:36%
/// </summary>
public static Color Moss_green
{
get
{
return new Color(0.54f, 0.6f, 0.36f, 1);
}
}
/// <summary>
/// #30BA8F R:19% G:73% B:56%
/// </summary>
public static Color Mountain_Meadow
{
get
{
return new Color(0.19f, 0.73f, 0.56f, 1);
}
}
/// <summary>
/// #997A8D R:60% G:48% B:55%
/// </summary>
public static Color Mountbatten_pink
{
get
{
return new Color(0.6f, 0.48f, 0.55f, 1);
}
}
/// <summary>
/// #18453B R:9% G:27% B:23%
/// </summary>
public static Color MSU_green
{
get
{
return new Color(0.09f, 0.27f, 0.23f, 1);
}
}
/// <summary>
/// #C54B8C R:77% G:29% B:55%
/// </summary>
public static Color Mulberry
{
get
{
return new Color(0.77f, 0.29f, 0.55f, 1);
}
}
/// <summary>
/// #C8509B R:78% G:31% B:61%
/// </summary>
public static Color Mulberry_Crayola
{
get
{
return new Color(0.78f, 0.31f, 0.61f, 1);
}
}
/// <summary>
/// #FFDB58 R:100% G:86% B:35%
/// </summary>
public static Color Mustard
{
get
{
return new Color(1f, 0.86f, 0.35f, 1);
}
}
/// <summary>
/// #317873 R:19% G:47% B:45%
/// </summary>
public static Color Myrtle_green
{
get
{
return new Color(0.19f, 0.47f, 0.45f, 1);
}
}
/// <summary>
/// #D65282 R:84% G:32% B:51%
/// </summary>
public static Color Mystic
{
get
{
return new Color(0.84f, 0.32f, 0.51f, 1);
}
}
/// <summary>
/// #AD4379 R:68% G:26% B:47%
/// </summary>
public static Color Mystic_maroon
{
get
{
return new Color(0.68f, 0.26f, 0.47f, 1);
}
}
/// <summary>
/// #F6ADC6 R:96% G:68% B:78%
/// </summary>
public static Color Nadeshiko_pink
{
get
{
return new Color(0.96f, 0.68f, 0.78f, 1);
}
}
/// <summary>
/// #FADA5E R:98% G:85% B:37%
/// </summary>
public static Color Naples_yellow
{
get
{
return new Color(0.98f, 0.85f, 0.37f, 1);
}
}
/// <summary>
/// #FFDEAD R:100% G:87% B:68%
/// </summary>
public static Color Navajo_white
{
get
{
return new Color(1f, 0.87f, 0.68f, 1);
}
}
/// <summary>
/// #000080 R:0% G:0% B:50%
/// </summary>
public static Color Navy_blue
{
get
{
return new Color(0f, 0f, 0.5f, 1);
}
}
/// <summary>
/// #1974D2 R:10% G:45% B:82%
/// </summary>
public static Color Navy_blue_Crayola
{
get
{
return new Color(0.1f, 0.45f, 0.82f, 1);
}
}
/// <summary>
/// #4666FF R:27% G:40% B:100%
/// </summary>
public static Color Neon_blue
{
get
{
return new Color(0.27f, 0.4f, 1f, 1);
}
}
/// <summary>
/// #39FF14 R:22% G:100% B:8%
/// </summary>
public static Color Neon_green
{
get
{
return new Color(0.22f, 1f, 0.08f, 1);
}
}
/// <summary>
/// #D7837F R:84% G:51% B:50%
/// </summary>
public static Color New_York_pink
{
get
{
return new Color(0.84f, 0.51f, 0.5f, 1);
}
}
/// <summary>
/// #727472 R:45% G:45% B:45%
/// </summary>
public static Color Nickel
{
get
{
return new Color(0.45f, 0.45f, 0.45f, 1);
}
}
/// <summary>
/// #A4DDED R:64% G:87% B:93%
/// </summary>
public static Color Non_photo_blue
{
get
{
return new Color(0.64f, 0.87f, 0.93f, 1);
}
}
/// <summary>
/// #E9FFDB R:91% G:100% B:86%
/// </summary>
public static Color Nyanza
{
get
{
return new Color(0.91f, 1f, 0.86f, 1);
}
}
/// <summary>
/// #4F42B5 R:31% G:26% B:71%
/// </summary>
public static Color Ocean_Blue
{
get
{
return new Color(0.31f, 0.26f, 0.71f, 1);
}
}
/// <summary>
/// #48BF91 R:28% G:75% B:57%
/// </summary>
public static Color Ocean_green
{
get
{
return new Color(0.28f, 0.75f, 0.57f, 1);
}
}
/// <summary>
/// #CC7722 R:80% G:47% B:13%
/// </summary>
public static Color Ochre
{
get
{
return new Color(0.8f, 0.47f, 0.13f, 1);
}
}
/// <summary>
/// #43302E R:26% G:19% B:18%
/// </summary>
public static Color Old_burgundy
{
get
{
return new Color(0.26f, 0.19f, 0.18f, 1);
}
}
/// <summary>
/// #CFB53B R:81% G:71% B:23%
/// </summary>
public static Color Old_gold
{
get
{
return new Color(0.81f, 0.71f, 0.23f, 1);
}
}
/// <summary>
/// #FDF5E6 R:99% G:96% B:90%
/// </summary>
public static Color Old_lace
{
get
{
return new Color(0.99f, 0.96f, 0.9f, 1);
}
}
/// <summary>
/// #796878 R:47% G:41% B:47%
/// </summary>
public static Color Old_lavender
{
get
{
return new Color(0.47f, 0.41f, 0.47f, 1);
}
}
/// <summary>
/// #673147 R:40% G:19% B:28%
/// </summary>
public static Color Old_mauve
{
get
{
return new Color(0.4f, 0.19f, 0.28f, 1);
}
}
/// <summary>
/// #C08081 R:75% G:50% B:51%
/// </summary>
public static Color Old_rose
{
get
{
return new Color(0.75f, 0.5f, 0.51f, 1);
}
}
/// <summary>
/// #848482 R:52% G:52% B:51%
/// </summary>
public static Color Old_silver
{
get
{
return new Color(0.52f, 0.52f, 0.51f, 1);
}
}
/// <summary>
/// #808000 R:50% G:50% B:0%
/// </summary>
public static Color Olive
{
get
{
return new Color(0.5f, 0.5f, 0f, 1);
}
}
/// <summary>
/// #6B8E23 R:42% G:56% B:14%
/// </summary>
public static Color Olive_Drab_No3
{
get
{
return new Color(0.42f, 0.56f, 0.14f, 1);
}
}
/// <summary>
/// #3C341F R:24% G:20% B:12%
/// </summary>
public static Color Olive_Drab_No7
{
get
{
return new Color(0.24f, 0.2f, 0.12f, 1);
}
}
/// <summary>
/// #B5B35C R:71% G:70% B:36%
/// </summary>
public static Color Olive_green
{
get
{
return new Color(0.71f, 0.7f, 0.36f, 1);
}
}
/// <summary>
/// #9AB973 R:60% G:73% B:45%
/// </summary>
public static Color Olivine
{
get
{
return new Color(0.6f, 0.73f, 0.45f, 1);
}
}
/// <summary>
/// #353839 R:21% G:22% B:22%
/// </summary>
public static Color Onyx
{
get
{
return new Color(0.21f, 0.22f, 0.22f, 1);
}
}
/// <summary>
/// #A8C3BC R:66% G:76% B:74%
/// </summary>
public static Color Opal
{
get
{
return new Color(0.66f, 0.76f, 0.74f, 1);
}
}
/// <summary>
/// #B784A7 R:72% G:52% B:65%
/// </summary>
public static Color Opera_mauve
{
get
{
return new Color(0.72f, 0.52f, 0.65f, 1);
}
}
/// <summary>
/// #FF6600 R:100% G:40% B:0%
/// </summary>
public static Color Orange
{
get
{
return new Color(1f, 0.4f, 0f, 1);
}
}
/// <summary>
/// #FF7F00 R:100% G:50% B:0%
/// </summary>
public static Color Orange_color_wheel
{
get
{
return new Color(1f, 0.5f, 0f, 1);
}
}
/// <summary>
/// #FF7538 R:100% G:46% B:22%
/// </summary>
public static Color Orange_Crayola
{
get
{
return new Color(1f, 0.46f, 0.22f, 1);
}
}
/// <summary>
/// #FF5800 R:100% G:35% B:0%
/// </summary>
public static Color Orange_Pantone
{
get
{
return new Color(1f, 0.35f, 0f, 1);
}
}
/// <summary>
/// #FB9902 R:98% G:60% B:1%
/// </summary>
public static Color Orange_RYB
{
get
{
return new Color(0.98f, 0.6f, 0.01f, 1);
}
}
/// <summary>
/// #FFA500 R:100% G:65% B:0%
/// </summary>
public static Color Orange_web
{
get
{
return new Color(1f, 0.65f, 0f, 1);
}
}
/// <summary>
/// #FF9F00 R:100% G:62% B:0%
/// </summary>
public static Color Orange_peel
{
get
{
return new Color(1f, 0.62f, 0f, 1);
}
}
/// <summary>
/// #FF681F R:100% G:41% B:12%
/// </summary>
public static Color Orange_red
{
get
{
return new Color(1f, 0.41f, 0.12f, 1);
}
}
/// <summary>
/// #FF5349 R:100% G:33% B:29%
/// </summary>
public static Color Orange_red_Crayola
{
get
{
return new Color(1f, 0.33f, 0.29f, 1);
}
}
/// <summary>
/// #FA5B3D R:98% G:36% B:24%
/// </summary>
public static Color Orange_soda
{
get
{
return new Color(0.98f, 0.36f, 0.24f, 1);
}
}
/// <summary>
/// #F5BD1F R:96% G:74% B:12%
/// </summary>
public static Color Orange_yellow
{
get
{
return new Color(0.96f, 0.74f, 0.12f, 1);
}
}
/// <summary>
/// #F8D568 R:97% G:84% B:41%
/// </summary>
public static Color Orange_yellow_Crayola
{
get
{
return new Color(0.97f, 0.84f, 0.41f, 1);
}
}
/// <summary>
/// #DA70D6 R:85% G:44% B:84%
/// </summary>
public static Color Orchid
{
get
{
return new Color(0.85f, 0.44f, 0.84f, 1);
}
}
/// <summary>
/// #F2BDCD R:95% G:74% B:80%
/// </summary>
public static Color Orchid_pink
{
get
{
return new Color(0.95f, 0.74f, 0.8f, 1);
}
}
/// <summary>
/// #E29CD2 R:89% G:61% B:82%
/// </summary>
public static Color Orchid_Crayola
{
get
{
return new Color(0.89f, 0.61f, 0.82f, 1);
}
}
/// <summary>
/// #2D383A R:18% G:22% B:23%
/// </summary>
public static Color Outer_space_Crayola
{
get
{
return new Color(0.18f, 0.22f, 0.23f, 1);
}
}
/// <summary>
/// #FF6E4A R:100% G:43% B:29%
/// </summary>
public static Color Outrageous_Orange
{
get
{
return new Color(1f, 0.43f, 0.29f, 1);
}
}
/// <summary>
/// #800020 R:50% G:0% B:13%
/// </summary>
public static Color Oxblood
{
get
{
return new Color(0.5f, 0f, 0.13f, 1);
}
}
/// <summary>
/// #002147 R:0% G:13% B:28%
/// </summary>
public static Color Oxford_blue
{
get
{
return new Color(0f, 0.13f, 0.28f, 1);
}
}
/// <summary>
/// #841617 R:52% G:9% B:9%
/// </summary>
public static Color OU_Crimson_red
{
get
{
return new Color(0.52f, 0.09f, 0.09f, 1);
}
}
/// <summary>
/// #1CA9C9 R:11% G:66% B:79%
/// </summary>
public static Color Pacific_blue
{
get
{
return new Color(0.11f, 0.66f, 0.79f, 1);
}
}
/// <summary>
/// #006600 R:0% G:40% B:0%
/// </summary>
public static Color Pakistan_green
{
get
{
return new Color(0f, 0.4f, 0f, 1);
}
}
/// <summary>
/// #682860 R:41% G:16% B:38%
/// </summary>
public static Color Palatinate_purple
{
get
{
return new Color(0.41f, 0.16f, 0.38f, 1);
}
}
/// <summary>
/// #BCD4E6 R:74% G:83% B:90%
/// </summary>
public static Color Pale_aqua
{
get
{
return new Color(0.74f, 0.83f, 0.9f, 1);
}
}
/// <summary>
/// #9BC4E2 R:61% G:77% B:89%
/// </summary>
public static Color Pale_cerulean
{
get
{
return new Color(0.61f, 0.77f, 0.89f, 1);
}
}
/// <summary>
/// #FADADD R:98% G:85% B:87%
/// </summary>
public static Color Pale_pink
{
get
{
return new Color(0.98f, 0.85f, 0.87f, 1);
}
}
/// <summary>
/// #FAE6FA R:98% G:90% B:98%
/// </summary>
public static Color Pale_purple_Pantone
{
get
{
return new Color(0.98f, 0.9f, 0.98f, 1);
}
}
/// <summary>
/// #C9C0BB R:79% G:75% B:73%
/// </summary>
public static Color Pale_silver
{
get
{
return new Color(0.79f, 0.75f, 0.73f, 1);
}
}
/// <summary>
/// #ECEBBD R:93% G:92% B:74%
/// </summary>
public static Color Pale_spring_bud
{
get
{
return new Color(0.93f, 0.92f, 0.74f, 1);
}
}
/// <summary>
/// #78184A R:47% G:9% B:29%
/// </summary>
public static Color Pansy_purple
{
get
{
return new Color(0.47f, 0.09f, 0.29f, 1);
}
}
/// <summary>
/// #009B7D R:0% G:61% B:49%
/// </summary>
public static Color Paolo_Veronese_green
{
get
{
return new Color(0f, 0.61f, 0.49f, 1);
}
}
/// <summary>
/// #FFEFD5 R:100% G:94% B:84%
/// </summary>
public static Color Papaya_whip
{
get
{
return new Color(1f, 0.94f, 0.84f, 1);
}
}
/// <summary>
/// #E63E62 R:90% G:24% B:38%
/// </summary>
public static Color Paradise_pink
{
get
{
return new Color(0.9f, 0.24f, 0.38f, 1);
}
}
/// <summary>
/// #50C878 R:31% G:78% B:47%
/// </summary>
public static Color Paris_Green
{
get
{
return new Color(0.31f, 0.78f, 0.47f, 1);
}
}
/// <summary>
/// #DEA5A4 R:87% G:65% B:64%
/// </summary>
public static Color Pastel_pink
{
get
{
return new Color(0.87f, 0.65f, 0.64f, 1);
}
}
/// <summary>
/// #800080 R:50% G:0% B:50%
/// </summary>
public static Color Patriarch
{
get
{
return new Color(0.5f, 0f, 0.5f, 1);
}
}
/// <summary>
/// #536878 R:33% G:41% B:47%
/// </summary>
public static Color Paynes_grey
{
get
{
return new Color(0.33f, 0.41f, 0.47f, 1);
}
}
/// <summary>
/// #FFE5B4 R:100% G:90% B:71%
/// </summary>
public static Color Peach
{
get
{
return new Color(1f, 0.9f, 0.71f, 1);
}
}
/// <summary>
/// #FFDAB9 R:100% G:85% B:73%
/// </summary>
public static Color Peach_puff
{
get
{
return new Color(1f, 0.85f, 0.73f, 1);
}
}
/// <summary>
/// #D1E231 R:82% G:89% B:19%
/// </summary>
public static Color Pear
{
get
{
return new Color(0.82f, 0.89f, 0.19f, 1);
}
}
/// <summary>
/// #B768A2 R:72% G:41% B:64%
/// </summary>
public static Color Pearly_purple
{
get
{
return new Color(0.72f, 0.41f, 0.64f, 1);
}
}
/// <summary>
/// #CCCCFF R:80% G:80% B:100%
/// </summary>
public static Color Periwinkle
{
get
{
return new Color(0.8f, 0.8f, 1f, 1);
}
}
/// <summary>
/// #C3CDE6 R:76% G:80% B:90%
/// </summary>
public static Color Periwinkle_Crayola
{
get
{
return new Color(0.76f, 0.8f, 0.9f, 1);
}
}
/// <summary>
/// #E12C2C R:88% G:17% B:17%
/// </summary>
public static Color Permanent_Geranium_Lake
{
get
{
return new Color(0.88f, 0.17f, 0.17f, 1);
}
}
/// <summary>
/// #1C39BB R:11% G:22% B:73%
/// </summary>
public static Color Persian_blue
{
get
{
return new Color(0.11f, 0.22f, 0.73f, 1);
}
}
/// <summary>
/// #00A693 R:0% G:65% B:58%
/// </summary>
public static Color Persian_green
{
get
{
return new Color(0f, 0.65f, 0.58f, 1);
}
}
/// <summary>
/// #32127A R:20% G:7% B:48%
/// </summary>
public static Color Persian_indigo
{
get
{
return new Color(0.2f, 0.07f, 0.48f, 1);
}
}
/// <summary>
/// #D99058 R:85% G:56% B:35%
/// </summary>
public static Color Persian_orange
{
get
{
return new Color(0.85f, 0.56f, 0.35f, 1);
}
}
/// <summary>
/// #F77FBE R:97% G:50% B:75%
/// </summary>
public static Color Persian_pink
{
get
{
return new Color(0.97f, 0.5f, 0.75f, 1);
}
}
/// <summary>
/// #701C1C R:44% G:11% B:11%
/// </summary>
public static Color Persian_plum
{
get
{
return new Color(0.44f, 0.11f, 0.11f, 1);
}
}
/// <summary>
/// #CC3333 R:80% G:20% B:20%
/// </summary>
public static Color Persian_red
{
get
{
return new Color(0.8f, 0.2f, 0.2f, 1);
}
}
/// <summary>
/// #FE28A2 R:100% G:16% B:64%
/// </summary>
public static Color Persian_rose
{
get
{
return new Color(1f, 0.16f, 0.64f, 1);
}
}
/// <summary>
/// #EC5800 R:93% G:35% B:0%
/// </summary>
public static Color Persimmon
{
get
{
return new Color(0.93f, 0.35f, 0f, 1);
}
}
/// <summary>
/// #8BA8B7 R:55% G:66% B:72%
/// </summary>
public static Color Pewter_Blue
{
get
{
return new Color(0.55f, 0.66f, 0.72f, 1);
}
}
/// <summary>
/// #DF00FF R:87% G:0% B:100%
/// </summary>
public static Color Phlox
{
get
{
return new Color(0.87f, 0f, 1f, 1);
}
}
/// <summary>
/// #000F89 R:0% G:6% B:54%
/// </summary>
public static Color Phthalo_blue
{
get
{
return new Color(0f, 0.06f, 0.54f, 1);
}
}
/// <summary>
/// #123524 R:7% G:21% B:14%
/// </summary>
public static Color Phthalo_green
{
get
{
return new Color(0.07f, 0.21f, 0.14f, 1);
}
}
/// <summary>
/// #2E2787 R:18% G:15% B:53%
/// </summary>
public static Color Picotee_blue
{
get
{
return new Color(0.18f, 0.15f, 0.53f, 1);
}
}
/// <summary>
/// #C30B4E R:76% G:4% B:31%
/// </summary>
public static Color Pictorial_carmine
{
get
{
return new Color(0.76f, 0.04f, 0.31f, 1);
}
}
/// <summary>
/// #FDDDE6 R:99% G:87% B:90%
/// </summary>
public static Color Piggy_pink
{
get
{
return new Color(0.99f, 0.87f, 0.9f, 1);
}
}
/// <summary>
/// #01796F R:0% G:47% B:44%
/// </summary>
public static Color Pine_green
{
get
{
return new Color(0f, 0.47f, 0.44f, 1);
}
}
/// <summary>
/// #2A2F23 R:16% G:18% B:14%
/// </summary>
public static Color Pine_tree
{
get
{
return new Color(0.16f, 0.18f, 0.14f, 1);
}
}
/// <summary>
/// #FFC0CB R:100% G:75% B:80%
/// </summary>
public static Color Pink
{
get
{
return new Color(1f, 0.75f, 0.8f, 1);
}
}
/// <summary>
/// #D74894 R:84% G:28% B:58%
/// </summary>
public static Color Pink_Pantone
{
get
{
return new Color(0.84f, 0.28f, 0.58f, 1);
}
}
/// <summary>
/// #FC74FD R:99% G:45% B:99%
/// </summary>
public static Color Pink_flamingo
{
get
{
return new Color(0.99f, 0.45f, 0.99f, 1);
}
}
/// <summary>
/// #FFDDF4 R:100% G:87% B:96%
/// </summary>
public static Color Pink_lace
{
get
{
return new Color(1f, 0.87f, 0.96f, 1);
}
}
/// <summary>
/// #D8B2D1 R:85% G:70% B:82%
/// </summary>
public static Color Pink_lavender
{
get
{
return new Color(0.85f, 0.7f, 0.82f, 1);
}
}
/// <summary>
/// #F78FA7 R:97% G:56% B:65%
/// </summary>
public static Color Pink_Sherbet
{
get
{
return new Color(0.97f, 0.56f, 0.65f, 1);
}
}
/// <summary>
/// #93C572 R:58% G:77% B:45%
/// </summary>
public static Color Pistachio
{
get
{
return new Color(0.58f, 0.77f, 0.45f, 1);
}
}
/// <summary>
/// #E5E4E2 R:90% G:89% B:89%
/// </summary>
public static Color Platinum
{
get
{
return new Color(0.9f, 0.89f, 0.89f, 1);
}
}
/// <summary>
/// #8E4585 R:56% G:27% B:52%
/// </summary>
public static Color Plum
{
get
{
return new Color(0.56f, 0.27f, 0.52f, 1);
}
}
/// <summary>
/// #DDA0DD R:87% G:63% B:87%
/// </summary>
public static Color Plum_web
{
get
{
return new Color(0.87f, 0.63f, 0.87f, 1);
}
}
/// <summary>
/// #5946B2 R:35% G:27% B:70%
/// </summary>
public static Color Plump_Purple
{
get
{
return new Color(0.35f, 0.27f, 0.7f, 1);
}
}
/// <summary>
/// #5DA493 R:36% G:64% B:58%
/// </summary>
public static Color Polished_Pine
{
get
{
return new Color(0.36f, 0.64f, 0.58f, 1);
}
}
/// <summary>
/// #86608E R:53% G:38% B:56%
/// </summary>
public static Color Pomp_and_Power
{
get
{
return new Color(0.53f, 0.38f, 0.56f, 1);
}
}
/// <summary>
/// #BE4F62 R:75% G:31% B:38%
/// </summary>
public static Color Popstar
{
get
{
return new Color(0.75f, 0.31f, 0.38f, 1);
}
}
/// <summary>
/// #FF5A36 R:100% G:35% B:21%
/// </summary>
public static Color Portland_Orange
{
get
{
return new Color(1f, 0.35f, 0.21f, 1);
}
}
/// <summary>
/// #B0E0E6 R:69% G:88% B:90%
/// </summary>
public static Color Powder_blue
{
get
{
return new Color(0.69f, 0.88f, 0.9f, 1);
}
}
/// <summary>
/// #FF85CF R:100% G:52% B:81%
/// </summary>
public static Color Princess_Perfume
{
get
{
return new Color(1f, 0.52f, 0.81f, 1);
}
}
/// <summary>
/// #F58025 R:96% G:50% B:15%
/// </summary>
public static Color Princeton_orange
{
get
{
return new Color(0.96f, 0.5f, 0.15f, 1);
}
}
/// <summary>
/// #701C1C R:44% G:11% B:11%
/// </summary>
public static Color Prune
{
get
{
return new Color(0.44f, 0.11f, 0.11f, 1);
}
}
/// <summary>
/// #003153 R:0% G:19% B:33%
/// </summary>
public static Color Prussian_blue
{
get
{
return new Color(0f, 0.19f, 0.33f, 1);
}
}
/// <summary>
/// #DF00FF R:87% G:0% B:100%
/// </summary>
public static Color Psychedelic_purple
{
get
{
return new Color(0.87f, 0f, 1f, 1);
}
}
/// <summary>
/// #CC8899 R:80% G:53% B:60%
/// </summary>
public static Color Puce
{
get
{
return new Color(0.8f, 0.53f, 0.6f, 1);
}
}
/// <summary>
/// #644117 R:39% G:25% B:9%
/// </summary>
public static Color Pullman_Brown_UPS_Brown
{
get
{
return new Color(0.39f, 0.25f, 0.09f, 1);
}
}
/// <summary>
/// #FF7518 R:100% G:46% B:9%
/// </summary>
public static Color Pumpkin
{
get
{
return new Color(1f, 0.46f, 0.09f, 1);
}
}
/// <summary>
/// #6A0DAD R:38% G:0% B:50%
/// </summary>
public static Color Purple
{
get
{
return new Color(0.38f, 0f, 0.5f, 1);
}
}
/// <summary>
/// #800080 R:50% G:0% B:50%
/// </summary>
public static Color Purple_HTML
{
get
{
return new Color(0.5f, 0f, 0.5f, 1);
}
}
/// <summary>
/// #9F00C5 R:62% G:0% B:77%
/// </summary>
public static Color Purple_Munsell
{
get
{
return new Color(0.62f, 0f, 0.77f, 1);
}
}
/// <summary>
/// #A020F0 R:63% G:13% B:94%
/// </summary>
public static Color Purple_X11
{
get
{
return new Color(0.63f, 0.13f, 0.94f, 1);
}
}
/// <summary>
/// #9678B6 R:59% G:47% B:71%
/// </summary>
public static Color Purple_mountain_majesty
{
get
{
return new Color(0.59f, 0.47f, 0.71f, 1);
}
}
/// <summary>
/// #4E5180 R:31% G:32% B:50%
/// </summary>
public static Color Purple_navy
{
get
{
return new Color(0.31f, 0.32f, 0.5f, 1);
}
}
/// <summary>
/// #FE4EDA R:100% G:31% B:85%
/// </summary>
public static Color Purple_pizzazz
{
get
{
return new Color(1f, 0.31f, 0.85f, 1);
}
}
/// <summary>
/// #9C51B6 R:61% G:32% B:71%
/// </summary>
public static Color Purple_Plum
{
get
{
return new Color(0.61f, 0.32f, 0.71f, 1);
}
}
/// <summary>
/// #9A4EAE R:60% G:31% B:68%
/// </summary>
public static Color Purpureus
{
get
{
return new Color(0.6f, 0.31f, 0.68f, 1);
}
}
/// <summary>
/// #436B95 R:26% G:42% B:58%
/// </summary>
public static Color Queen_blue
{
get
{
return new Color(0.26f, 0.42f, 0.58f, 1);
}
}
/// <summary>
/// #E8CCD7 R:91% G:80% B:84%
/// </summary>
public static Color Queen_pink
{
get
{
return new Color(0.91f, 0.8f, 0.84f, 1);
}
}
/// <summary>
/// #A6A6A6 R:65% G:65% B:65%
/// </summary>
public static Color Quick_Silver
{
get
{
return new Color(0.65f, 0.65f, 0.65f, 1);
}
}
/// <summary>
/// #8E3A59 R:56% G:23% B:35%
/// </summary>
public static Color Quinacridone_magenta
{
get
{
return new Color(0.56f, 0.23f, 0.35f, 1);
}
}
/// <summary>
/// #FF355E R:100% G:21% B:37%
/// </summary>
public static Color Radical_Red
{
get
{
return new Color(1f, 0.21f, 0.37f, 1);
}
}
/// <summary>
/// #242124 R:14% G:13% B:14%
/// </summary>
public static Color Raisin_black
{
get
{
return new Color(0.14f, 0.13f, 0.14f, 1);
}
}
/// <summary>
/// #FBAB60 R:98% G:67% B:38%
/// </summary>
public static Color Rajah
{
get
{
return new Color(0.98f, 0.67f, 0.38f, 1);
}
}
/// <summary>
/// #E30B5D R:89% G:4% B:36%
/// </summary>
public static Color Raspberry
{
get
{
return new Color(0.89f, 0.04f, 0.36f, 1);
}
}
/// <summary>
/// #915F6D R:57% G:37% B:43%
/// </summary>
public static Color Raspberry_glace
{
get
{
return new Color(0.57f, 0.37f, 0.43f, 1);
}
}
/// <summary>
/// #B3446C R:70% G:27% B:42%
/// </summary>
public static Color Raspberry_rose
{
get
{
return new Color(0.7f, 0.27f, 0.42f, 1);
}
}
/// <summary>
/// #D68A59 R:84% G:54% B:35%
/// </summary>
public static Color Raw_Sienna
{
get
{
return new Color(0.84f, 0.54f, 0.35f, 1);
}
}
/// <summary>
/// #826644 R:51% G:40% B:27%
/// </summary>
public static Color Raw_umber
{
get
{
return new Color(0.51f, 0.4f, 0.27f, 1);
}
}
/// <summary>
/// #FF33CC R:100% G:20% B:80%
/// </summary>
public static Color Razzle_dazzle_rose
{
get
{
return new Color(1f, 0.2f, 0.8f, 1);
}
}
/// <summary>
/// #E3256B R:89% G:15% B:42%
/// </summary>
public static Color Razzmatazz
{
get
{
return new Color(0.89f, 0.15f, 0.42f, 1);
}
}
/// <summary>
/// #8D4E85 R:55% G:31% B:52%
/// </summary>
public static Color Razzmic_Berry
{
get
{
return new Color(0.55f, 0.31f, 0.52f, 1);
}
}
/// <summary>
/// #663399 R:40% G:20% B:60%
/// </summary>
public static Color Rebecca_Purple
{
get
{
return new Color(0.4f, 0.2f, 0.6f, 1);
}
}
/// <summary>
/// #FF0000 R:100% G:0% B:0%
/// </summary>
public static Color Red
{
get
{
return new Color(1f, 0f, 0f, 1);
}
}
/// <summary>
/// #EE204D R:93% G:13% B:30%
/// </summary>
public static Color Red_Crayola
{
get
{
return new Color(0.93f, 0.13f, 0.3f, 1);
}
}
/// <summary>
/// #F2003C R:95% G:0% B:24%
/// </summary>
public static Color Red_Munsell
{
get
{
return new Color(0.95f, 0f, 0.24f, 1);
}
}
/// <summary>
/// #C40233 R:77% G:1% B:20%
/// </summary>
public static Color Red_NCS
{
get
{
return new Color(0.77f, 0.01f, 0.2f, 1);
}
}
/// <summary>
/// #ED2939 R:93% G:16% B:22%
/// </summary>
public static Color Red_Pantone
{
get
{
return new Color(0.93f, 0.16f, 0.22f, 1);
}
}
/// <summary>
/// #ED1C24 R:93% G:11% B:14%
/// </summary>
public static Color Red_pigment
{
get
{
return new Color(0.93f, 0.11f, 0.14f, 1);
}
}
/// <summary>
/// #FE2712 R:100% G:15% B:7%
/// </summary>
public static Color Red_RYB
{
get
{
return new Color(1f, 0.15f, 0.07f, 1);
}
}
/// <summary>
/// #FF5349 R:100% G:33% B:29%
/// </summary>
public static Color Red_orange
{
get
{
return new Color(1f, 0.33f, 0.29f, 1);
}
}
/// <summary>
/// #FF681F R:100% G:41% B:12%
/// </summary>
public static Color Red_orange_Crayola
{
get
{
return new Color(1f, 0.41f, 0.12f, 1);
}
}
/// <summary>
/// #FF4500 R:100% G:27% B:0%
/// </summary>
public static Color Red_orange_Color_wheel
{
get
{
return new Color(1f, 0.27f, 0f, 1);
}
}
/// <summary>
/// #E40078 R:89% G:0% B:47%
/// </summary>
public static Color Red_purple
{
get
{
return new Color(0.89f, 0f, 0.47f, 1);
}
}
/// <summary>
/// #FD3A4A R:99% G:23% B:29%
/// </summary>
public static Color Red_Salsa
{
get
{
return new Color(0.99f, 0.23f, 0.29f, 1);
}
}
/// <summary>
/// #C71585 R:78% G:8% B:52%
/// </summary>
public static Color Red_violet
{
get
{
return new Color(0.78f, 0.08f, 0.52f, 1);
}
}
/// <summary>
/// #C0448F R:75% G:27% B:56%
/// </summary>
public static Color Red_violet_Crayola
{
get
{
return new Color(0.75f, 0.27f, 0.56f, 1);
}
}
/// <summary>
/// #922B3E R:57% G:17% B:24%
/// </summary>
public static Color Red_violet_Color_wheel
{
get
{
return new Color(0.57f, 0.17f, 0.24f, 1);
}
}
/// <summary>
/// #A45A52 R:64% G:35% B:32%
/// </summary>
public static Color Redwood
{
get
{
return new Color(0.64f, 0.35f, 0.32f, 1);
}
}
/// <summary>
/// #002387 R:0% G:14% B:53%
/// </summary>
public static Color Resolution_blue
{
get
{
return new Color(0f, 0.14f, 0.53f, 1);
}
}
/// <summary>
/// #777696 R:47% G:46% B:59%
/// </summary>
public static Color Rhythm
{
get
{
return new Color(0.47f, 0.46f, 0.59f, 1);
}
}
/// <summary>
/// #004040 R:0% G:25% B:25%
/// </summary>
public static Color Rich_black
{
get
{
return new Color(0f, 0.25f, 0.25f, 1);
}
}
/// <summary>
/// #010B13 R:0% G:4% B:7%
/// </summary>
public static Color Rich_black_FOGRA29
{
get
{
return new Color(0f, 0.04f, 0.07f, 1);
}
}
/// <summary>
/// #010203 R:0% G:1% B:1%
/// </summary>
public static Color Rich_black_FOGRA39
{
get
{
return new Color(0f, 0.01f, 0.01f, 1);
}
}
/// <summary>
/// #444C38 R:27% G:30% B:22%
/// </summary>
public static Color Rifle_green
{
get
{
return new Color(0.27f, 0.3f, 0.22f, 1);
}
}
/// <summary>
/// #00CCCC R:0% G:80% B:80%
/// </summary>
public static Color Robin_egg_blue
{
get
{
return new Color(0f, 0.8f, 0.8f, 1);
}
}
/// <summary>
/// #8A7F80 R:54% G:50% B:50%
/// </summary>
public static Color Rocket_metallic
{
get
{
return new Color(0.54f, 0.5f, 0.5f, 1);
}
}
/// <summary>
/// #838996 R:51% G:54% B:59%
/// </summary>
public static Color Roman_silver
{
get
{
return new Color(0.51f, 0.54f, 0.59f, 1);
}
}
/// <summary>
/// #FF007F R:100% G:0% B:50%
/// </summary>
public static Color Rose
{
get
{
return new Color(1f, 0f, 0.5f, 1);
}
}
/// <summary>
/// #F9429E R:98% G:26% B:62%
/// </summary>
public static Color Rose_bonbon
{
get
{
return new Color(0.98f, 0.26f, 0.62f, 1);
}
}
/// <summary>
/// #9E5E6F R:62% G:37% B:44%
/// </summary>
public static Color Rose_Dust
{
get
{
return new Color(0.62f, 0.37f, 0.44f, 1);
}
}
/// <summary>
/// #674846 R:40% G:28% B:27%
/// </summary>
public static Color Rose_ebony
{
get
{
return new Color(0.4f, 0.28f, 0.27f, 1);
}
}
/// <summary>
/// #E32636 R:89% G:15% B:21%
/// </summary>
public static Color Rose_madder
{
get
{
return new Color(0.89f, 0.15f, 0.21f, 1);
}
}
/// <summary>
/// #FF66CC R:100% G:40% B:80%
/// </summary>
public static Color Rose_pink
{
get
{
return new Color(1f, 0.4f, 0.8f, 1);
}
}
/// <summary>
/// #AA98A9 R:67% G:60% B:66%
/// </summary>
public static Color Rose_quartz
{
get
{
return new Color(0.67f, 0.6f, 0.66f, 1);
}
}
/// <summary>
/// #C21E56 R:76% G:12% B:34%
/// </summary>
public static Color Rose_red
{
get
{
return new Color(0.76f, 0.12f, 0.34f, 1);
}
}
/// <summary>
/// #905D5D R:56% G:36% B:36%
/// </summary>
public static Color Rose_taupe
{
get
{
return new Color(0.56f, 0.36f, 0.36f, 1);
}
}
/// <summary>
/// #AB4E52 R:67% G:31% B:32%
/// </summary>
public static Color Rose_vale
{
get
{
return new Color(0.67f, 0.31f, 0.32f, 1);
}
}
/// <summary>
/// #65000B R:40% G:0% B:4%
/// </summary>
public static Color Rosewood
{
get
{
return new Color(0.4f, 0f, 0.04f, 1);
}
}
/// <summary>
/// #D40000 R:83% G:0% B:0%
/// </summary>
public static Color Rosso_corsa
{
get
{
return new Color(0.83f, 0f, 0f, 1);
}
}
/// <summary>
/// #BC8F8F R:74% G:56% B:56%
/// </summary>
public static Color Rosy_brown
{
get
{
return new Color(0.74f, 0.56f, 0.56f, 1);
}
}
/// <summary>
/// #002366 R:0% G:14% B:40%
/// </summary>
public static Color Royal_blue_dark
{
get
{
return new Color(0f, 0.14f, 0.4f, 1);
}
}
/// <summary>
/// #4169E1 R:25% G:41% B:88%
/// </summary>
public static Color Royal_blue_light
{
get
{
return new Color(0.25f, 0.41f, 0.88f, 1);
}
}
/// <summary>
/// #7851A9 R:47% G:32% B:66%
/// </summary>
public static Color Royal_purple
{
get
{
return new Color(0.47f, 0.32f, 0.66f, 1);
}
}
/// <summary>
/// #FADA5E R:98% G:85% B:37%
/// </summary>
public static Color Royal_yellow
{
get
{
return new Color(0.98f, 0.85f, 0.37f, 1);
}
}
/// <summary>
/// #CE4676 R:81% G:27% B:46%
/// </summary>
public static Color Ruber
{
get
{
return new Color(0.81f, 0.27f, 0.46f, 1);
}
}
/// <summary>
/// #D10056 R:82% G:0% B:34%
/// </summary>
public static Color Rubine_red
{
get
{
return new Color(0.82f, 0f, 0.34f, 1);
}
}
/// <summary>
/// #E0115F R:88% G:7% B:37%
/// </summary>
public static Color Ruby
{
get
{
return new Color(0.88f, 0.07f, 0.37f, 1);
}
}
/// <summary>
/// #9B111E R:61% G:7% B:12%
/// </summary>
public static Color Ruby_red
{
get
{
return new Color(0.61f, 0.07f, 0.12f, 1);
}
}
/// <summary>
/// #A81C07 R:66% G:11% B:3%
/// </summary>
public static Color Rufous
{
get
{
return new Color(0.66f, 0.11f, 0.03f, 1);
}
}
/// <summary>
/// #80461B R:50% G:27% B:11%
/// </summary>
public static Color Russet
{
get
{
return new Color(0.5f, 0.27f, 0.11f, 1);
}
}
/// <summary>
/// #679267 R:40% G:57% B:40%
/// </summary>
public static Color Russian_green
{
get
{
return new Color(0.4f, 0.57f, 0.4f, 1);
}
}
/// <summary>
/// #32174D R:20% G:9% B:30%
/// </summary>
public static Color Russian_violet
{
get
{
return new Color(0.2f, 0.09f, 0.3f, 1);
}
}
/// <summary>
/// #B7410E R:72% G:25% B:5%
/// </summary>
public static Color Rust
{
get
{
return new Color(0.72f, 0.25f, 0.05f, 1);
}
}
/// <summary>
/// #DA2C43 R:85% G:17% B:26%
/// </summary>
public static Color Rusty_red
{
get
{
return new Color(0.85f, 0.17f, 0.26f, 1);
}
}
/// <summary>
/// #043927 R:2% G:22% B:15%
/// </summary>
public static Color Sacramento_State_green
{
get
{
return new Color(0.02f, 0.22f, 0.15f, 1);
}
}
/// <summary>
/// #8B4513 R:55% G:27% B:7%
/// </summary>
public static Color Saddle_brown
{
get
{
return new Color(0.55f, 0.27f, 0.07f, 1);
}
}
/// <summary>
/// #FF7800 R:100% G:47% B:0%
/// </summary>
public static Color Safety_orange
{
get
{
return new Color(1f, 0.47f, 0f, 1);
}
}
/// <summary>
/// #FF6700 R:100% G:40% B:0%
/// </summary>
public static Color Safety_orange_blaze_orange
{
get
{
return new Color(1f, 0.4f, 0f, 1);
}
}
/// <summary>
/// #EED202 R:93% G:82% B:1%
/// </summary>
public static Color Safety_yellow
{
get
{
return new Color(0.93f, 0.82f, 0.01f, 1);
}
}
/// <summary>
/// #F4C430 R:96% G:77% B:19%
/// </summary>
public static Color Saffron
{
get
{
return new Color(0.96f, 0.77f, 0.19f, 1);
}
}
/// <summary>
/// #BCB88A R:74% G:72% B:54%
/// </summary>
public static Color Sage
{
get
{
return new Color(0.74f, 0.72f, 0.54f, 1);
}
}
/// <summary>
/// #23297A R:14% G:16% B:48%
/// </summary>
public static Color St__Patricks_blue
{
get
{
return new Color(0.14f, 0.16f, 0.48f, 1);
}
}
/// <summary>
/// #FA8072 R:98% G:50% B:45%
/// </summary>
public static Color Salmon
{
get
{
return new Color(0.98f, 0.5f, 0.45f, 1);
}
}
/// <summary>
/// #FF91A4 R:100% G:57% B:64%
/// </summary>
public static Color Salmon_pink
{
get
{
return new Color(1f, 0.57f, 0.64f, 1);
}
}
/// <summary>
/// #C2B280 R:76% G:70% B:50%
/// </summary>
public static Color Sand
{
get
{
return new Color(0.76f, 0.7f, 0.5f, 1);
}
}
/// <summary>
/// #967117 R:59% G:44% B:9%
/// </summary>
public static Color Sand_dune
{
get
{
return new Color(0.59f, 0.44f, 0.09f, 1);
}
}
/// <summary>
/// #F4A460 R:96% G:64% B:38%
/// </summary>
public static Color Sandy_brown
{
get
{
return new Color(0.96f, 0.64f, 0.38f, 1);
}
}
/// <summary>
/// #507D2A R:31% G:49% B:16%
/// </summary>
public static Color Sap_green
{
get
{
return new Color(0.31f, 0.49f, 0.16f, 1);
}
}
/// <summary>
/// #0F52BA R:6% G:32% B:73%
/// </summary>
public static Color Sapphire
{
get
{
return new Color(0.06f, 0.32f, 0.73f, 1);
}
}
/// <summary>
/// #0067A5 R:0% G:40% B:65%
/// </summary>
public static Color Sapphire_blue
{
get
{
return new Color(0f, 0.4f, 0.65f, 1);
}
}
/// <summary>
/// #0067A5 R:18% G:36% B:63%
/// </summary>
public static Color Sapphire_Crayola
{
get
{
return new Color(0.18f, 0.36f, 0.63f, 1);
}
}
/// <summary>
/// #CBA135 R:80% G:63% B:21%
/// </summary>
public static Color Satin_sheen_gold
{
get
{
return new Color(0.8f, 0.63f, 0.21f, 1);
}
}
/// <summary>
/// #FF2400 R:100% G:14% B:0%
/// </summary>
public static Color Scarlet
{
get
{
return new Color(1f, 0.14f, 0f, 1);
}
}
/// <summary>
/// #FF91AF R:100% G:57% B:69%
/// </summary>
public static Color Schauss_pink
{
get
{
return new Color(1f, 0.57f, 0.69f, 1);
}
}
/// <summary>
/// #FFD800 R:100% G:85% B:0%
/// </summary>
public static Color School_bus_yellow
{
get
{
return new Color(1f, 0.85f, 0f, 1);
}
}
/// <summary>
/// #66FF66 R:40% G:100% B:40%
/// </summary>
public static Color Screamin_Green
{
get
{
return new Color(0.4f, 1f, 0.4f, 1);
}
}
/// <summary>
/// #2E8B57 R:18% G:55% B:34%
/// </summary>
public static Color Sea_green
{
get
{
return new Color(0.18f, 0.55f, 0.34f, 1);
}
}
/// <summary>
/// #00FFCD R:0% G:100% B:80%
/// </summary>
public static Color Sea_green_Crayola
{
get
{
return new Color(0f, 1f, 0.8f, 1);
}
}
/// <summary>
/// #59260B R:20% G:8% B:8%
/// </summary>
public static Color Seal_brown
{
get
{
return new Color(0.2f, 0.08f, 0.08f, 1);
}
}
/// <summary>
/// #FFF5EE R:100% G:96% B:93%
/// </summary>
public static Color Seashell
{
get
{
return new Color(1f, 0.96f, 0.93f, 1);
}
}
/// <summary>
/// #FFBA00 R:100% G:73% B:0%
/// </summary>
public static Color Selective_yellow
{
get
{
return new Color(1f, 0.73f, 0f, 1);
}
}
/// <summary>
/// #704214 R:44% G:26% B:8%
/// </summary>
public static Color Sepia
{
get
{
return new Color(0.44f, 0.26f, 0.08f, 1);
}
}
/// <summary>
/// #8A795D R:54% G:47% B:36%
/// </summary>
public static Color Shadow
{
get
{
return new Color(0.54f, 0.47f, 0.36f, 1);
}
}
/// <summary>
/// #778BA5 R:47% G:55% B:65%
/// </summary>
public static Color Shadow_blue
{
get
{
return new Color(0.47f, 0.55f, 0.65f, 1);
}
}
/// <summary>
/// #009E60 R:0% G:62% B:38%
/// </summary>
public static Color Shamrock_green
{
get
{
return new Color(0f, 0.62f, 0.38f, 1);
}
}
/// <summary>
/// #8FD400 R:56% G:83% B:0%
/// </summary>
public static Color Sheen_green
{
get
{
return new Color(0.56f, 0.83f, 0f, 1);
}
}
/// <summary>
/// #D98695 R:85% G:53% B:58%
/// </summary>
public static Color Shimmering_Blush
{
get
{
return new Color(0.85f, 0.53f, 0.58f, 1);
}
}
/// <summary>
/// #5FA778 R:37% G:65% B:47%
/// </summary>
public static Color Shiny_Shamrock
{
get
{
return new Color(0.37f, 0.65f, 0.47f, 1);
}
}
/// <summary>
/// #FC0FC0 R:99% G:6% B:75%
/// </summary>
public static Color Shocking_pink
{
get
{
return new Color(0.99f, 0.06f, 0.75f, 1);
}
}
/// <summary>
/// #FF6FFF R:100% G:44% B:100%
/// </summary>
public static Color Shocking_pink_Crayola
{
get
{
return new Color(1f, 0.44f, 1f, 1);
}
}
/// <summary>
/// #882D17 R:53% G:18% B:9%
/// </summary>
public static Color Sienna
{
get
{
return new Color(0.53f, 0.18f, 0.09f, 1);
}
}
/// <summary>
/// #C0C0C0 R:75% G:75% B:75%
/// </summary>
public static Color Silver
{
get
{
return new Color(0.75f, 0.75f, 0.75f, 1);
}
}
/// <summary>
/// #C9C0BB R:79% G:75% B:73%
/// </summary>
public static Color Silver_Crayola
{
get
{
return new Color(0.79f, 0.75f, 0.73f, 1);
}
}
/// <summary>
/// #AAA9AD R:67% G:66% B:68%
/// </summary>
public static Color Silver_Metallic
{
get
{
return new Color(0.67f, 0.66f, 0.68f, 1);
}
}
/// <summary>
/// #ACACAC R:67% G:67% B:67%
/// </summary>
public static Color Silver_chalice
{
get
{
return new Color(0.67f, 0.67f, 0.67f, 1);
}
}
/// <summary>
/// #C4AEAD R:77% G:68% B:68%
/// </summary>
public static Color Silver_pink
{
get
{
return new Color(0.77f, 0.68f, 0.68f, 1);
}
}
/// <summary>
/// #BFC1C2 R:75% G:76% B:76%
/// </summary>
public static Color Silver_sand
{
get
{
return new Color(0.75f, 0.76f, 0.76f, 1);
}
}
/// <summary>
/// #CB410B R:80% G:25% B:4%
/// </summary>
public static Color Sinopia
{
get
{
return new Color(0.8f, 0.25f, 0.04f, 1);
}
}
/// <summary>
/// #FF3855 R:100% G:22% B:33%
/// </summary>
public static Color Sizzling_Red
{
get
{
return new Color(1f, 0.22f, 0.33f, 1);
}
}
/// <summary>
/// #FFDB00 R:100% G:86% B:0%
/// </summary>
public static Color Sizzling_Sunrise
{
get
{
return new Color(1f, 0.86f, 0f, 1);
}
}
/// <summary>
/// #007474 R:0% G:45% B:45%
/// </summary>
public static Color Skobeloff
{
get
{
return new Color(0f, 0.45f, 0.45f, 1);
}
}
/// <summary>
/// #87CEEB R:53% G:81% B:92%
/// </summary>
public static Color Sky_blue
{
get
{
return new Color(0.53f, 0.81f, 0.92f, 1);
}
}
/// <summary>
/// #76D7EA R:46% G:84% B:92%
/// </summary>
public static Color Sky_blue_Crayola
{
get
{
return new Color(0.46f, 0.84f, 0.92f, 1);
}
}
/// <summary>
/// #CF71AF R:81% G:44% B:69%
/// </summary>
public static Color Sky_magenta
{
get
{
return new Color(0.81f, 0.44f, 0.69f, 1);
}
}
/// <summary>
/// #6A5ACD R:42% G:35% B:80%
/// </summary>
public static Color Slate_blue
{
get
{
return new Color(0.42f, 0.35f, 0.8f, 1);
}
}
/// <summary>
/// #708090 R:44% G:50% B:56%
/// </summary>
public static Color Slate_gray
{
get
{
return new Color(0.44f, 0.5f, 0.56f, 1);
}
}
/// <summary>
/// #299617 R:16% G:59% B:9%
/// </summary>
public static Color Slimy_green
{
get
{
return new Color(0.16f, 0.59f, 0.09f, 1);
}
}
/// <summary>
/// #C84186 R:78% G:25% B:53%
/// </summary>
public static Color Smitten
{
get
{
return new Color(0.78f, 0.25f, 0.53f, 1);
}
}
/// <summary>
/// #100C08 R:6% G:5% B:3%
/// </summary>
public static Color Smoky_black
{
get
{
return new Color(0.06f, 0.05f, 0.03f, 1);
}
}
/// <summary>
/// #FFFAFA R:100% G:98% B:98%
/// </summary>
public static Color Snow
{
get
{
return new Color(1f, 0.98f, 0.98f, 1);
}
}
/// <summary>
/// #893843 R:54% G:22% B:26%
/// </summary>
public static Color Solid_pink
{
get
{
return new Color(0.54f, 0.22f, 0.26f, 1);
}
}
/// <summary>
/// #757575 R:46% G:46% B:46%
/// </summary>
public static Color Sonic_silver
{
get
{
return new Color(0.46f, 0.46f, 0.46f, 1);
}
}
/// <summary>
/// #1D2951 R:11% G:16% B:32%
/// </summary>
public static Color Space_cadet
{
get
{
return new Color(0.11f, 0.16f, 0.32f, 1);
}
}
/// <summary>
/// #807532 R:50% G:46% B:20%
/// </summary>
public static Color Spanish_bistre
{
get
{
return new Color(0.5f, 0.46f, 0.2f, 1);
}
}
/// <summary>
/// #0070B8 R:0% G:44% B:72%
/// </summary>
public static Color Spanish_blue
{
get
{
return new Color(0f, 0.44f, 0.72f, 1);
}
}
/// <summary>
/// #D10047 R:82% G:0% B:28%
/// </summary>
public static Color Spanish_carmine
{
get
{
return new Color(0.82f, 0f, 0.28f, 1);
}
}
/// <summary>
/// #989898 R:60% G:60% B:60%
/// </summary>
public static Color Spanish_gray
{
get
{
return new Color(0.6f, 0.6f, 0.6f, 1);
}
}
/// <summary>
/// #009150 R:0% G:57% B:31%
/// </summary>
public static Color Spanish_green
{
get
{
return new Color(0f, 0.57f, 0.31f, 1);
}
}
/// <summary>
/// #E86100 R:91% G:38% B:0%
/// </summary>
public static Color Spanish_orange
{
get
{
return new Color(0.91f, 0.38f, 0f, 1);
}
}
/// <summary>
/// #F7BFBE R:97% G:75% B:75%
/// </summary>
public static Color Spanish_pink
{
get
{
return new Color(0.97f, 0.75f, 0.75f, 1);
}
}
/// <summary>
/// #E60026 R:90% G:0% B:15%
/// </summary>
public static Color Spanish_red
{
get
{
return new Color(0.9f, 0f, 0.15f, 1);
}
}
/// <summary>
/// #00FFFF R:0% G:100% B:100%
/// </summary>
public static Color Spanish_sky_blue
{
get
{
return new Color(0f, 1f, 1f, 1);
}
}
/// <summary>
/// #4C2882 R:30% G:16% B:51%
/// </summary>
public static Color Spanish_violet
{
get
{
return new Color(0.3f, 0.16f, 0.51f, 1);
}
}
/// <summary>
/// #007F5C R:0% G:50% B:36%
/// </summary>
public static Color Spanish_viridian
{
get
{
return new Color(0f, 0.5f, 0.36f, 1);
}
}
/// <summary>
/// #A7FC00 R:65% G:99% B:0%
/// </summary>
public static Color Spring_bud
{
get
{
return new Color(0.65f, 0.99f, 0f, 1);
}
}
/// <summary>
/// #87FF2A R:53% G:100% B:16%
/// </summary>
public static Color Spring_Frost
{
get
{
return new Color(0.53f, 1f, 0.16f, 1);
}
}
/// <summary>
/// #00FF7F R:0% G:100% B:50%
/// </summary>
public static Color Spring_green
{
get
{
return new Color(0f, 1f, 0.5f, 1);
}
}
/// <summary>
/// #ECEBBD R:93% G:92% B:74%
/// </summary>
public static Color Spring_green_Crayola
{
get
{
return new Color(0.93f, 0.92f, 0.74f, 1);
}
}
/// <summary>
/// #007BB8 R:0% G:48% B:72%
/// </summary>
public static Color Star_command_blue
{
get
{
return new Color(0f, 0.48f, 0.72f, 1);
}
}
/// <summary>
/// #4682B4 R:27% G:51% B:71%
/// </summary>
public static Color Steel_blue
{
get
{
return new Color(0.27f, 0.51f, 0.71f, 1);
}
}
/// <summary>
/// #CC33CC R:80% G:20% B:80%
/// </summary>
public static Color Steel_pink
{
get
{
return new Color(0.8f, 0.2f, 0.8f, 1);
}
}
/// <summary>
/// #5F8A8B R:37% G:54% B:55%
/// </summary>
public static Color Steel_Teal
{
get
{
return new Color(0.37f, 0.54f, 0.55f, 1);
}
}
/// <summary>
/// #FADA5E R:98% G:85% B:37%
/// </summary>
public static Color Stil_de_grain_yellow
{
get
{
return new Color(0.98f, 0.85f, 0.37f, 1);
}
}
/// <summary>
/// #E4D96F R:89% G:85% B:44%
/// </summary>
public static Color Straw
{
get
{
return new Color(0.89f, 0.85f, 0.44f, 1);
}
}
/// <summary>
/// #914E75 R:57% G:31% B:46%
/// </summary>
public static Color Sugar_Plum
{
get
{
return new Color(0.57f, 0.31f, 0.46f, 1);
}
}
/// <summary>
/// #FFCC33 R:100% G:80% B:20%
/// </summary>
public static Color Sunglow
{
get
{
return new Color(1f, 0.8f, 0.2f, 1);
}
}
/// <summary>
/// #E3AB57 R:89% G:67% B:34%
/// </summary>
public static Color Sunray
{
get
{
return new Color(0.89f, 0.67f, 0.34f, 1);
}
}
/// <summary>
/// #FAD6A5 R:98% G:84% B:65%
/// </summary>
public static Color Sunset
{
get
{
return new Color(0.98f, 0.84f, 0.65f, 1);
}
}
/// <summary>
/// #CF6BA9 R:81% G:42% B:66%
/// </summary>
public static Color Super_pink
{
get
{
return new Color(0.81f, 0.42f, 0.66f, 1);
}
}
/// <summary>
/// #A83731 R:66% G:22% B:19%
/// </summary>
public static Color Sweet_Brown
{
get
{
return new Color(0.66f, 0.22f, 0.19f, 1);
}
}
/// <summary>
/// #D2B48C R:82% G:71% B:55%
/// </summary>
public static Color Tan
{
get
{
return new Color(0.82f, 0.71f, 0.55f, 1);
}
}
/// <summary>
/// #D99A6C R:85% G:60% B:42%
/// </summary>
public static Color Tan_Crayola
{
get
{
return new Color(0.85f, 0.6f, 0.42f, 1);
}
}
/// <summary>
/// #F28500 R:95% G:52% B:0%
/// </summary>
public static Color Tangerine
{
get
{
return new Color(0.95f, 0.52f, 0f, 1);
}
}
/// <summary>
/// #E4717A R:89% G:44% B:48%
/// </summary>
public static Color Tango_pink
{
get
{
return new Color(0.89f, 0.44f, 0.48f, 1);
}
}
/// <summary>
/// #FB4D46 R:98% G:30% B:27%
/// </summary>
public static Color Tart_Orange
{
get
{
return new Color(0.98f, 0.3f, 0.27f, 1);
}
}
/// <summary>
/// #483C32 R:28% G:24% B:20%
/// </summary>
public static Color Taupe
{
get
{
return new Color(0.28f, 0.24f, 0.2f, 1);
}
}
/// <summary>
/// #8B8589 R:55% G:52% B:54%
/// </summary>
public static Color Taupe_gray
{
get
{
return new Color(0.55f, 0.52f, 0.54f, 1);
}
}
/// <summary>
/// #D0F0C0 R:82% G:94% B:75%
/// </summary>
public static Color Tea_green
{
get
{
return new Color(0.82f, 0.94f, 0.75f, 1);
}
}
/// <summary>
/// #F88379 R:97% G:51% B:47%
/// </summary>
public static Color Tea_rose
{
get
{
return new Color(0.97f, 0.51f, 0.47f, 1);
}
}
/// <summary>
/// #008080 R:0% G:50% B:50%
/// </summary>
public static Color Teal
{
get
{
return new Color(0f, 0.5f, 0.5f, 1);
}
}
/// <summary>
/// #367588 R:21% G:46% B:53%
/// </summary>
public static Color Teal_blue
{
get
{
return new Color(0.21f, 0.46f, 0.53f, 1);
}
}
/// <summary>
/// #CF3476 R:81% G:20% B:46%
/// </summary>
public static Color Telemagenta
{
get
{
return new Color(0.81f, 0.2f, 0.46f, 1);
}
}
/// <summary>
/// #CD5700 R:80% G:34% B:0%
/// </summary>
public static Color Tenné_tawny
{
get
{
return new Color(0.8f, 0.34f, 0f, 1);
}
}
/// <summary>
/// #E2725B R:89% G:45% B:36%
/// </summary>
public static Color Terra_cotta
{
get
{
return new Color(0.89f, 0.45f, 0.36f, 1);
}
}
/// <summary>
/// #D8BFD8 R:85% G:75% B:85%
/// </summary>
public static Color Thistle
{
get
{
return new Color(0.85f, 0.75f, 0.85f, 1);
}
}
/// <summary>
/// #DE6FA1 R:87% G:44% B:63%
/// </summary>
public static Color Thulian_pink
{
get
{
return new Color(0.87f, 0.44f, 0.63f, 1);
}
}
/// <summary>
/// #FC89AC R:99% G:54% B:67%
/// </summary>
public static Color Tickle_Me_Pink
{
get
{
return new Color(0.99f, 0.54f, 0.67f, 1);
}
}
/// <summary>
/// #0ABAB5 R:4% G:73% B:71%
/// </summary>
public static Color Tiffany_Blue
{
get
{
return new Color(0.04f, 0.73f, 0.71f, 1);
}
}
/// <summary>
/// #DBD7D2 R:86% G:84% B:82%
/// </summary>
public static Color Timberwolf
{
get
{
return new Color(0.86f, 0.84f, 0.82f, 1);
}
}
/// <summary>
/// #EEE600 R:93% G:90% B:0%
/// </summary>
public static Color Titanium_yellow
{
get
{
return new Color(0.93f, 0.9f, 0f, 1);
}
}
/// <summary>
/// #FF6347 R:100% G:39% B:28%
/// </summary>
public static Color Tomato
{
get
{
return new Color(1f, 0.39f, 0.28f, 1);
}
}
/// <summary>
/// #00755E R:0% G:46% B:37%
/// </summary>
public static Color Tropical_rain_forest
{
get
{
return new Color(0f, 0.46f, 0.37f, 1);
}
}
/// <summary>
/// #2D68C4 R:0% G:45% B:81%
/// </summary>
public static Color True_Blue
{
get
{
return new Color(0f, 0.45f, 0.81f, 1);
}
}
/// <summary>
/// #3E8EDE R:24% G:56% B:87%
/// </summary>
public static Color Tufts_blue
{
get
{
return new Color(0.24f, 0.56f, 0.87f, 1);
}
}
/// <summary>
/// #DEAA88 R:87% G:67% B:53%
/// </summary>
public static Color Tumbleweed
{
get
{
return new Color(0.87f, 0.67f, 0.53f, 1);
}
}
/// <summary>
/// #40E0D0 R:25% G:88% B:82%
/// </summary>
public static Color Turquoise
{
get
{
return new Color(0.25f, 0.88f, 0.82f, 1);
}
}
/// <summary>
/// #00FFEF R:0% G:100% B:94%
/// </summary>
public static Color Turquoise_blue
{
get
{
return new Color(0f, 1f, 0.94f, 1);
}
}
/// <summary>
/// #A0D6B4 R:63% G:84% B:71%
/// </summary>
public static Color Turquoise_green
{
get
{
return new Color(0.63f, 0.84f, 0.71f, 1);
}
}
/// <summary>
/// #8A9A5B R:54% G:60% B:36%
/// </summary>
public static Color Turtle_green
{
get
{
return new Color(0.54f, 0.6f, 0.36f, 1);
}
}
/// <summary>
/// #FAD6A5 R:98% G:84% B:65%
/// </summary>
public static Color Tuscan
{
get
{
return new Color(0.98f, 0.84f, 0.65f, 1);
}
}
/// <summary>
/// #6F4E37 R:44% G:31% B:22%
/// </summary>
public static Color Tuscan_brown
{
get
{
return new Color(0.44f, 0.31f, 0.22f, 1);
}
}
/// <summary>
/// #7C4848 R:49% G:28% B:28%
/// </summary>
public static Color Tuscan_red
{
get
{
return new Color(0.49f, 0.28f, 0.28f, 1);
}
}
/// <summary>
/// #A67B5B R:65% G:48% B:36%
/// </summary>
public static Color Tuscan_tan
{
get
{
return new Color(0.65f, 0.48f, 0.36f, 1);
}
}
/// <summary>
/// #C09999 R:75% G:60% B:60%
/// </summary>
public static Color Tuscany
{
get
{
return new Color(0.75f, 0.6f, 0.6f, 1);
}
}
/// <summary>
/// #8A496B R:54% G:29% B:42%
/// </summary>
public static Color Twilight_lavender
{
get
{
return new Color(0.54f, 0.29f, 0.42f, 1);
}
}
/// <summary>
/// #66023C R:40% G:1% B:24%
/// </summary>
public static Color Tyrian_purple
{
get
{
return new Color(0.4f, 0.01f, 0.24f, 1);
}
}
/// <summary>
/// #0033AA R:0% G:20% B:67%
/// </summary>
public static Color UA_blue
{
get
{
return new Color(0f, 0.2f, 0.67f, 1);
}
}
/// <summary>
/// #D9004C R:85% G:0% B:30%
/// </summary>
public static Color UA_red
{
get
{
return new Color(0.85f, 0f, 0.3f, 1);
}
}
/// <summary>
/// #3F00FF R:7% G:4% B:56%
/// </summary>
public static Color Ultramarine
{
get
{
return new Color(0.07f, 0.04f, 0.56f, 1);
}
}
/// <summary>
/// #4166F5 R:25% G:40% B:96%
/// </summary>
public static Color Ultramarine_blue
{
get
{
return new Color(0.25f, 0.4f, 0.96f, 1);
}
}
/// <summary>
/// #FF6FFF R:100% G:44% B:100%
/// </summary>
public static Color Ultra_pink
{
get
{
return new Color(1f, 0.44f, 1f, 1);
}
}
/// <summary>
/// #FC6C85 R:99% G:42% B:52%
/// </summary>
public static Color Ultra_red
{
get
{
return new Color(0.99f, 0.42f, 0.52f, 1);
}
}
/// <summary>
/// #635147 R:39% G:32% B:28%
/// </summary>
public static Color Umber
{
get
{
return new Color(0.39f, 0.32f, 0.28f, 1);
}
}
/// <summary>
/// #FFDDCA R:100% G:87% B:79%
/// </summary>
public static Color Unbleached_silk
{
get
{
return new Color(1f, 0.87f, 0.79f, 1);
}
}
/// <summary>
/// #5B92E5 R:36% G:57% B:90%
/// </summary>
public static Color United_Nations_blue
{
get
{
return new Color(0.36f, 0.57f, 0.9f, 1);
}
}
/// <summary>
/// #FFFF66 R:100% G:100% B:40%
/// </summary>
public static Color Unmellow_yellow
{
get
{
return new Color(1f, 1f, 0.4f, 1);
}
}
/// <summary>
/// #014421 R:0% G:27% B:13%
/// </summary>
public static Color UP_Forest_green
{
get
{
return new Color(0f, 0.27f, 0.13f, 1);
}
}
/// <summary>
/// #7B1113 R:48% G:7% B:7%
/// </summary>
public static Color UP_maroon
{
get
{
return new Color(0.48f, 0.07f, 0.07f, 1);
}
}
/// <summary>
/// #AE2029 R:68% G:13% B:16%
/// </summary>
public static Color Upsdell_red
{
get
{
return new Color(0.68f, 0.13f, 0.16f, 1);
}
}
/// <summary>
/// #AFDBF5 R:69% G:86% B:96%
/// </summary>
public static Color Uranian_blue
{
get
{
return new Color(0.69f, 0.86f, 0.96f, 1);
}
}
/// <summary>
/// #004F98 R:0% G:31% B:60%
/// </summary>
public static Color USAFA_blue
{
get
{
return new Color(0f, 0.31f, 0.6f, 1);
}
}
/// <summary>
/// #664228 R:40% G:26% B:16%
/// </summary>
public static Color Van_Dyke_brown
{
get
{
return new Color(0.4f, 0.26f, 0.16f, 1);
}
}
/// <summary>
/// #F3E5AB R:95% G:90% B:67%
/// </summary>
public static Color Vanilla
{
get
{
return new Color(0.95f, 0.9f, 0.67f, 1);
}
}
/// <summary>
/// #F38FA9 R:95% G:56% B:66%
/// </summary>
public static Color Vanilla_ice
{
get
{
return new Color(0.95f, 0.56f, 0.66f, 1);
}
}
/// <summary>
/// #C5B358 R:77% G:70% B:35%
/// </summary>
public static Color Vegas_gold
{
get
{
return new Color(0.77f, 0.7f, 0.35f, 1);
}
}
/// <summary>
/// #C80815 R:78% G:3% B:8%
/// </summary>
public static Color Venetian_red
{
get
{
return new Color(0.78f, 0.03f, 0.08f, 1);
}
}
/// <summary>
/// #43B3AE R:26% G:70% B:68%
/// </summary>
public static Color Verdigris
{
get
{
return new Color(0.26f, 0.7f, 0.68f, 1);
}
}
/// <summary>
/// #E34234 R:89% G:26% B:20%
/// </summary>
public static Color Vermilion
{
get
{
return new Color(0.89f, 0.26f, 0.2f, 1);
}
}
/// <summary>
/// #A020F0 R:63% G:13% B:94%
/// </summary>
public static Color Veronica
{
get
{
return new Color(0.63f, 0.13f, 0.94f, 1);
}
}
/// <summary>
/// #8F00FF R:56% G:0% B:100%
/// </summary>
public static Color Violet
{
get
{
return new Color(0.56f, 0f, 1f, 1);
}
}
/// <summary>
/// #7F00FF R:50% G:0% B:100%
/// </summary>
public static Color Violet_color_wheel
{
get
{
return new Color(0.5f, 0f, 1f, 1);
}
}
/// <summary>
/// #963D7F R:59% G:24% B:50%
/// </summary>
public static Color Violet_crayola
{
get
{
return new Color(0.59f, 0.24f, 0.5f, 1);
}
}
/// <summary>
/// #8601AF R:53% G:0% B:69%
/// </summary>
public static Color Violet_RYB
{
get
{
return new Color(0.53f, 0f, 0.69f, 1);
}
}
/// <summary>
/// #EE82EE R:93% G:51% B:93%
/// </summary>
public static Color Violet_web
{
get
{
return new Color(0.93f, 0.51f, 0.93f, 1);
}
}
/// <summary>
/// #324AB2 R:20% G:29% B:70%
/// </summary>
public static Color Violet_blue
{
get
{
return new Color(0.2f, 0.29f, 0.7f, 1);
}
}
/// <summary>
/// #766EC8 R:46% G:43% B:78%
/// </summary>
public static Color Violet_blue_Crayola
{
get
{
return new Color(0.46f, 0.43f, 0.78f, 1);
}
}
/// <summary>
/// #F75394 R:97% G:33% B:58%
/// </summary>
public static Color Violet_red
{
get
{
return new Color(0.97f, 0.33f, 0.58f, 1);
}
}
/// <summary>
/// #40826D R:25% G:51% B:43%
/// </summary>
public static Color Viridian
{
get
{
return new Color(0.25f, 0.51f, 0.43f, 1);
}
}
/// <summary>
/// #009698 R:0% G:59% B:60%
/// </summary>
public static Color Viridian_green
{
get
{
return new Color(0f, 0.59f, 0.6f, 1);
}
}
/// <summary>
/// #9F1D35 R:62% G:11% B:21%
/// </summary>
public static Color Vivid_burgundy
{
get
{
return new Color(0.62f, 0.11f, 0.21f, 1);
}
}
/// <summary>
/// #00CCFF R:0% G:80% B:100%
/// </summary>
public static Color Vivid_sky_blue
{
get
{
return new Color(0f, 0.8f, 1f, 1);
}
}
/// <summary>
/// #FFA089 R:100% G:63% B:54%
/// </summary>
public static Color Vivid_tangerine
{
get
{
return new Color(1f, 0.63f, 0.54f, 1);
}
}
/// <summary>
/// #9F00FF R:62% G:0% B:100%
/// </summary>
public static Color Vivid_violet
{
get
{
return new Color(0.62f, 0f, 1f, 1);
}
}
/// <summary>
/// #CEFF00 R:80% G:100% B:0%
/// </summary>
public static Color Volt
{
get
{
return new Color(0.8f, 1f, 0f, 1);
}
}
/// <summary>
/// #004242 R:0% G:26% B:26%
/// </summary>
public static Color Warm_black
{
get
{
return new Color(0f, 0.26f, 0.26f, 1);
}
}
/// <summary>
/// #F5DEB3 R:96% G:87% B:70%
/// </summary>
public static Color Wheat
{
get
{
return new Color(0.96f, 0.87f, 0.7f, 1);
}
}
/// <summary>
/// #FFFFFF R:100% G:100% B:100%
/// </summary>
public static Color White
{
get
{
return new Color(1f, 1f, 1f, 1);
}
}
/// <summary>
/// #A2ADD0 R:64% G:68% B:82%
/// </summary>
public static Color Wild_blue_yonder
{
get
{
return new Color(0.64f, 0.68f, 0.82f, 1);
}
}
/// <summary>
/// #D470A2 R:83% G:44% B:64%
/// </summary>
public static Color Wild_orchid
{
get
{
return new Color(0.83f, 0.44f, 0.64f, 1);
}
}
/// <summary>
/// #FF43A4 R:100% G:26% B:64%
/// </summary>
public static Color Wild_Strawberry
{
get
{
return new Color(1f, 0.26f, 0.64f, 1);
}
}
/// <summary>
/// #FC6C85 R:99% G:42% B:52%
/// </summary>
public static Color Wild_watermelon
{
get
{
return new Color(0.99f, 0.42f, 0.52f, 1);
}
}
/// <summary>
/// #A75502 R:65% G:33% B:1%
/// </summary>
public static Color Windsor_tan
{
get
{
return new Color(0.65f, 0.33f, 0.01f, 1);
}
}
/// <summary>
/// #722F37 R:45% G:18% B:22%
/// </summary>
public static Color Wine
{
get
{
return new Color(0.45f, 0.18f, 0.22f, 1);
}
}
/// <summary>
/// #673147 R:40% G:19% B:28%
/// </summary>
public static Color Wine_dregs
{
get
{
return new Color(0.4f, 0.19f, 0.28f, 1);
}
}
/// <summary>
/// #FF007C R:100% G:0% B:49%
/// </summary>
public static Color Winter_Sky
{
get
{
return new Color(1f, 0f, 0.49f, 1);
}
}
/// <summary>
/// #56887D R:34% G:53% B:49%
/// </summary>
public static Color Wintergreen_Dream
{
get
{
return new Color(0.34f, 0.53f, 0.49f, 1);
}
}
/// <summary>
/// #C9A0DC R:79% G:63% B:86%
/// </summary>
public static Color Wisteria
{
get
{
return new Color(0.79f, 0.63f, 0.86f, 1);
}
}
/// <summary>
/// #C19A6B R:76% G:60% B:42%
/// </summary>
public static Color Wood_brown
{
get
{
return new Color(0.76f, 0.6f, 0.42f, 1);
}
}
/// <summary>
/// #0F4D92 R:6% G:30% B:57%
/// </summary>
public static Color Yale_Blue
{
get
{
return new Color(0.06f, 0.3f, 0.57f, 1);
}
}
/// <summary>
/// #FFFF00 R:100% G:100% B:0%
/// </summary>
public static Color Yellow
{
get
{
return new Color(1f, 1f, 0f, 1);
}
}
/// <summary>
/// #FCE883 R:99% G:91% B:51%
/// </summary>
public static Color Yellow_Crayola
{
get
{
return new Color(0.99f, 0.91f, 0.51f, 1);
}
}
/// <summary>
/// #EFCC00 R:94% G:80% B:0%
/// </summary>
public static Color Yellow_Munsell
{
get
{
return new Color(0.94f, 0.8f, 0f, 1);
}
}
/// <summary>
/// #FFD300 R:100% G:83% B:0%
/// </summary>
public static Color Yellow_NCS
{
get
{
return new Color(1f, 0.83f, 0f, 1);
}
}
/// <summary>
/// #FEDF00 R:100% G:87% B:0%
/// </summary>
public static Color Yellow_Pantone
{
get
{
return new Color(1f, 0.87f, 0f, 1);
}
}
/// <summary>
/// #FFEF00 R:100% G:94% B:0%
/// </summary>
public static Color Yellow_process
{
get
{
return new Color(1f, 0.94f, 0f, 1);
}
}
/// <summary>
/// #FEFE33 R:100% G:100% B:20%
/// </summary>
public static Color Yellow_RYB
{
get
{
return new Color(1f, 1f, 0.2f, 1);
}
}
/// <summary>
/// #9ACD32 R:60% G:80% B:20%
/// </summary>
public static Color Yellow_green
{
get
{
return new Color(0.6f, 0.8f, 0.2f, 1);
}
}
/// <summary>
/// #C5E384 R:77% G:89% B:52%
/// </summary>
public static Color Yellow_green_Crayola
{
get
{
return new Color(0.77f, 0.89f, 0.52f, 1);
}
}
/// <summary>
/// #30B21A R:19% G:70% B:10%
/// </summary>
public static Color Yellow_green_Color_Wheel
{
get
{
return new Color(0.19f, 0.7f, 0.1f, 1);
}
}
/// <summary>
/// #FFAE42 R:100% G:68% B:26%
/// </summary>
public static Color Yellow_Orange
{
get
{
return new Color(1f, 0.68f, 0.26f, 1);
}
}
/// <summary>
/// #FF9505 R:100% G:58% B:2%
/// </summary>
public static Color Yellow_Orange_Color_Wheel
{
get
{
return new Color(1f, 0.58f, 0.02f, 1);
}
}
/// <summary>
/// #FFF700 R:100% G:97% B:0%
/// </summary>
public static Color Yellow_Sunshine
{
get
{
return new Color(1f, 0.97f, 0f, 1);
}
}
/// <summary>
/// #2E5090 R:18% G:31% B:56%
/// </summary>
public static Color YInMn_Blue
{
get
{
return new Color(0.18f, 0.31f, 0.56f, 1);
}
}
/// <summary>
/// #0014A8 R:0% G:8% B:66%
/// </summary>
public static Color Zaffre
{
get
{
return new Color(0f, 0.08f, 0.66f, 1);
}
}
/// <summary>
/// #39A78E R:22% G:65% B:56%
/// </summary>
public static Color Zomp
{
get
{
return new Color(0.22f, 0.65f, 0.56f, 1);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment