Skip to content

Color

Summary

Represents an ARGB (alpha, red, green, blue) color.

Signature

1
public sealed class Color

Namespace

cAlgo.API

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 using cAlgo.API;
 namespace cAlgo
 {
     // This sample shows how to parse a string to color and use it in your code
     // You can use both Hex color codes and color names for Color Code parameter
     [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class ColorSample : Indicator
     {
         [Parameter("Color Code", DefaultValue = "#168565")]
         public string ColorCodeParameter { get; set; }
         [Parameter("Color Alpha", DefaultValue = 100, MinValue = 0, MaxValue = 255)]
         public int ColorAlphaParameter { get; set; }
         protected override void Initialize()
         {
             Chart.ColorSettings.BackgroundColor = ParseColor(ColorCodeParameter, ColorAlphaParameter);
         }
         public override void Calculate(int index)
         {
         }
         private Color ParseColor(string colorString, int alpha = 255)
         {
             var color = colorString[0] == '#' ? Color.FromHex(colorString) : Color.FromName(colorString);
             return Color.FromArgb(alpha, color);
         }
     }
 }

Methods

ToArgb

Summary

Get the 32-bit ARGB color value.

Signature

1
public int ToArgb()

Return Value

int

ToHexString

Summary

Get the hex string representation of the color.

Signature

1
public string ToHexString()

Return Value

string

ToString

Summary

Returns a System.String that represents this instance.

Signature

1
public string ToString()

Return Value

string

Equals (2)

Equals (1 of 2)

Summary

Defines whether the specified object is equal to this instance.

Signature

1
public bool Equals(Color other)

Parameters

Name Type Description
other Color The object to compare with the current object.

Return Value

bool

Equals (2 of 2)

Summary

Defines whether the specified object is equal to this instance.

Signature

1
public bool Equals(object obj)

Parameters

Name Type Description
obj object The object to compare with the current object.

Return Value

bool

GetHashCode

Summary

Returns the hash code for this instance.

Signature

1
public int GetHashCode()

Return Value

int

FromArgb (4)

FromArgb (1 of 4)

Summary

Creates a color from alpha, red, green and blue components.

Signature

1
public static Color FromArgb(int alpha, int red, int green, int blue)

Parameters

Name Type Description
alpha int Alpha value from 0 to 255
red int Red value from 0 to 255
green int Green value from 0 to 255
blue int Blue value from 0 to 255

Return Value

Color

Examples

1
 var greenColor = Color.FromArgb(255, 0, 255, 0);

FromArgb (2 of 4)

Summary

Creates a color from existing color, but with new specified alpha value.

Signature

1
public static Color FromArgb(int alpha, Color baseColor)

Parameters

Name Type Description
alpha int New alpha value from 0 to 255
baseColor Color Base color from which red, green and blue values will be copied to a new color

Return Value

Color

Examples

1
 var transparentBlue = Color.FromArgb(128, Color.Blue);

FromArgb (3 of 4)

Summary

Creates a color from a 32-bit ARGB value.

Signature

1
public static Color FromArgb(int argb)

Parameters

Name Type Description
argb int Color ARGB 32-bit integer value

Return Value

Color

FromArgb (4 of 4)

Summary

Creates a color from red, green and blue values. The alpha value is implicitly 255 (fully opaque).

Signature

1
public static Color FromArgb(int red, int green, int blue)

Parameters

Name Type Description
red int Red value from 0 to 255
green int Green value from 0 to 255
blue int Blue value from 0 to 255

Return Value

Color

Examples

1
 var greenColor = Color.FromArgb(0, 255, 0);

FromHex

Summary

Attempts to convert a hex string to a Color.

Signature

1
public static Color FromHex(string hex)

Parameters

Name Type Description
hex string Hex string to convert to a Color

Return Value

Color

Examples

1
 var color = Color.FromHex("#808080");

FromName

Summary

Creates a color from the specified name of a predefined color.

Signature

1
public static Color FromName(string name)

Parameters

Name Type Description
name string Name of predefined color

Return Value

Color

Examples

1
 var greenColor = Color.FromName("Green");

Properties

A

Summary

Gets the alpha component value of the color.

Signature

1
public byte A {get;}

Return Value

byte

R

Summary

Gets the red component value of the color.

Signature

1
public byte R {get;}

Return Value

byte

G

Summary

Gets the green component value of the color.

Signature

1
public byte G {get;}

Return Value

byte

B

Summary

Gets the blue component value of the color.

Signature

1
public byte B {get;}

Return Value

byte

Transparent

Summary

Gets a system-defined color that has an ARGB value of #00FFFFFF.

Signature

1
public static Color Transparent {get;}

Return Value

Color

AliceBlue

Summary

Gets a system-defined color that has an ARGB value of #FFF0F8FF.

Signature

1
public static Color AliceBlue {get;}

Return Value

Color

AntiqueWhite

Summary

Gets a system-defined color that has an ARGB value of #FFFAEBD7.

Signature

1
public static Color AntiqueWhite {get;}

Return Value

Color

Aqua

Summary

Gets a system-defined color that has an ARGB value of #FF00FFFF.

Signature

1
public static Color Aqua {get;}

Return Value

Color

Aquamarine

Summary

Gets a system-defined color that has an ARGB value of #FF7FFFD4.

Signature

1
public static Color Aquamarine {get;}

Return Value

Color

Azure

Summary

Gets a system-defined color that has an ARGB value of #FFF0FFFF.

Signature

1
public static Color Azure {get;}

Return Value

Color

Beige

Summary

Gets a system-defined color that has an ARGB value of #FFF5F5DC.

Signature

1
public static Color Beige {get;}

Return Value

Color

Bisque

Summary

Gets a system-defined color that has an ARGB value of #FFFFE4C4.

Signature

1
public static Color Bisque {get;}

Return Value

Color

Black

Summary

Gets a system-defined color that has an ARGB value of #FF000000.

Signature

1
public static Color Black {get;}

Return Value

Color

BlanchedAlmond

Summary

Gets a system-defined color that has an ARGB value of #FFFFEBCD.

Signature

1
public static Color BlanchedAlmond {get;}

Return Value

Color

Blue

Summary

Gets a system-defined color that has an ARGB value of #FF0000FF.

Signature

1
public static Color Blue {get;}

Return Value

Color

BlueViolet

Summary

Gets a system-defined color that has an ARGB value of #FF8A2BE2.

Signature

1
public static Color BlueViolet {get;}

Return Value

Color

Brown

Summary

Gets a system-defined color that has an ARGB value of #FFA52A2A.

Signature

1
public static Color Brown {get;}

Return Value

Color

BurlyWood

Summary

Gets a system-defined color that has an ARGB value of #FFDEB887.

Signature

1
public static Color BurlyWood {get;}

Return Value

Color

CadetBlue

Summary

Gets a system-defined color that has an ARGB value of #FF5F9EA0.

Signature

1
public static Color CadetBlue {get;}

Return Value

Color

Chartreuse

Summary

Gets a system-defined color that has an ARGB value of #FF7FFF00.

Signature

1
public static Color Chartreuse {get;}

Return Value

Color

Chocolate

Summary

Gets a system-defined color that has an ARGB value of #FFD2691E.

Signature

1
public static Color Chocolate {get;}

Return Value

Color

Coral

Summary

Gets a system-defined color that has an ARGB value of #FFFF7F50.

Signature

1
public static Color Coral {get;}

Return Value

Color

CornflowerBlue

Summary

Gets a system-defined color that has an ARGB value of #FF6495ED.

Signature

1
public static Color CornflowerBlue {get;}

Return Value

Color

Cornsilk

Summary

Gets a system-defined color that has an ARGB value of #FFFFF8DC.

Signature

1
public static Color Cornsilk {get;}

Return Value

Color

Crimson

Summary

Gets a system-defined color that has an ARGB value of #FFDC143C.

Signature

1
public static Color Crimson {get;}

Return Value

Color

Cyan

Summary

Gets a system-defined color that has an ARGB value of #FF00FFFF.

Signature

1
public static Color Cyan {get;}

Return Value

Color

DarkBlue

Summary

Gets a system-defined color that has an ARGB value of #FF00008B.

Signature

1
public static Color DarkBlue {get;}

Return Value

Color

DarkCyan

Summary

Gets a system-defined color that has an ARGB value of #FF008B8B.

Signature

1
public static Color DarkCyan {get;}

Return Value

Color

DarkGoldenrod

Summary

Gets a system-defined color that has an ARGB value of #FFB8860B.

Signature

1
public static Color DarkGoldenrod {get;}

Return Value

Color

DarkGray

Summary

Gets a system-defined color that has an ARGB value of #FFA9A9A9.

Signature

1
public static Color DarkGray {get;}

Return Value

Color

DarkGreen

Summary

Gets a system-defined color that has an ARGB value of #FF006400.

Signature

1
public static Color DarkGreen {get;}

Return Value

Color

DarkKhaki

Summary

Gets a system-defined color that has an ARGB value of #FFBDB76B.

Signature

1
public static Color DarkKhaki {get;}

Return Value

Color

DarkMagenta

Summary

Gets a system-defined color that has an ARGB value of #FF8B008B.

Signature

1
public static Color DarkMagenta {get;}

Return Value

Color

DarkOliveGreen

Summary

Gets a system-defined color that has an ARGB value of #FF556B2F.

Signature

1
public static Color DarkOliveGreen {get;}

Return Value

Color

DarkOrange

Summary

Gets a system-defined color that has an ARGB value of #FFFF8C00.

Signature

1
public static Color DarkOrange {get;}

Return Value

Color

DarkOrchid

Summary

Gets a system-defined color that has an ARGB value of #FF9932CC.

Signature

1
public static Color DarkOrchid {get;}

Return Value

Color

DarkRed

Summary

Gets a system-defined color that has an ARGB value of #FF8B0000.

Signature

1
public static Color DarkRed {get;}

Return Value

Color

DarkSalmon

Summary

Gets a system-defined color that has an ARGB value of #FFE9967A.

Signature

1
public static Color DarkSalmon {get;}

Return Value

Color

DarkSeaGreen

Summary

Gets a system-defined color that has an ARGB value of #FF8FBC8F.

Signature

1
public static Color DarkSeaGreen {get;}

Return Value

Color

DarkSlateBlue

Summary

Gets a system-defined color that has an ARGB value of #FF483D8B.

Signature

1
public static Color DarkSlateBlue {get;}

Return Value

Color

DarkSlateGray

Summary

Gets a system-defined color that has an ARGB value of #FF2F4F4F.

Signature

1
public static Color DarkSlateGray {get;}

Return Value

Color

DarkTurquoise

Summary

Gets a system-defined color that has an ARGB value of #FF00CED1.

Signature

1
public static Color DarkTurquoise {get;}

Return Value

Color

DarkViolet

Summary

Gets a system-defined color that has an ARGB value of #FF9400D3.

Signature

1
public static Color DarkViolet {get;}

Return Value

Color

DeepPink

Summary

Gets a system-defined color that has an ARGB value of #FFFF1493.

Signature

1
public static Color DeepPink {get;}

Return Value

Color

DeepSkyBlue

Summary

Gets a system-defined color that has an ARGB value of #FF00BFFF.

Signature

1
public static Color DeepSkyBlue {get;}

Return Value

Color

DimGray

Summary

Gets a system-defined color that has an ARGB value of #FF696969.

Signature

1
public static Color DimGray {get;}

Return Value

Color

DodgerBlue

Summary

Gets a system-defined color that has an ARGB value of #FF1E90FF.

Signature

1
public static Color DodgerBlue {get;}

Return Value

Color

Firebrick

Summary

Gets a system-defined color that has an ARGB value of #FFB22222.

Signature

1
public static Color Firebrick {get;}

Return Value

Color

FloralWhite

Summary

Gets a system-defined color that has an ARGB value of #FFFFFAF0.

Signature

1
public static Color FloralWhite {get;}

Return Value

Color

ForestGreen

Summary

Gets a system-defined color that has an ARGB value of #FF228B22.

Signature

1
public static Color ForestGreen {get;}

Return Value

Color

Fuchsia

Summary

Gets a system-defined color that has an ARGB value of #FFFF00FF.

Signature

1
public static Color Fuchsia {get;}

Return Value

Color

Gainsboro

Summary

Gets a system-defined color that has an ARGB value of #FFDCDCDC.

Signature

1
public static Color Gainsboro {get;}

Return Value

Color

GhostWhite

Summary

Gets a system-defined color that has an ARGB value of #FFF8F8FF.

Signature

1
public static Color GhostWhite {get;}

Return Value

Color

Gold

Summary

Gets a system-defined color that has an ARGB value of #FFFFD700.

Signature

1
public static Color Gold {get;}

Return Value

Color

Goldenrod

Summary

Gets a system-defined color that has an ARGB value of #FFDAA520.

Signature

1
public static Color Goldenrod {get;}

Return Value

Color

Gray

Summary

Gets a system-defined color that has an ARGB value of #FF808080.

Signature

1
public static Color Gray {get;}

Return Value

Color

Green

Summary

Gets a system-defined color that has an ARGB value of #FF008000.

Signature

1
public static Color Green {get;}

Return Value

Color

GreenYellow

Summary

Gets a system-defined color that has an ARGB value of #FFADFF2F.

Signature

1
public static Color GreenYellow {get;}

Return Value

Color

Honeydew

Summary

Gets a system-defined color that has an ARGB value of #FFF0FFF0.

Signature

1
public static Color Honeydew {get;}

Return Value

Color

HotPink

Summary

Gets a system-defined color that has an ARGB value of #FFFF69B4.

Signature

1
public static Color HotPink {get;}

Return Value

Color

IndianRed

Summary

Gets a system-defined color that has an ARGB value of #FFCD5C5C.

Signature

1
public static Color IndianRed {get;}

Return Value

Color

Indigo

Summary

Gets a system-defined color that has an ARGB value of #FF4B0082.

Signature

1
public static Color Indigo {get;}

Return Value

Color

Ivory

Summary

Gets a system-defined color that has an ARGB value of #FFFFFFF0.

Signature

1
public static Color Ivory {get;}

Return Value

Color

Khaki

Summary

Gets a system-defined color that has an ARGB value of #FFF0E68C.

Signature

1
public static Color Khaki {get;}

Return Value

Color

Lavender

Summary

Gets a system-defined color that has an ARGB value of #FFE6E6FA.

Signature

1
public static Color Lavender {get;}

Return Value

Color

LavenderBlush

Summary

Gets a system-defined color that has an ARGB value of #FFFFF0F5.

Signature

1
public static Color LavenderBlush {get;}

Return Value

Color

LawnGreen

Summary

Gets a system-defined color that has an ARGB value of #FF7CFC00.

Signature

1
public static Color LawnGreen {get;}

Return Value

Color

LemonChiffon

Summary

Gets a system-defined color that has an ARGB value of #FFFFFACD.

Signature

1
public static Color LemonChiffon {get;}

Return Value

Color

LightBlue

Summary

Gets a system-defined color that has an ARGB value of #FFADD8E6.

Signature

1
public static Color LightBlue {get;}

Return Value

Color

LightCoral

Summary

Gets a system-defined color that has an ARGB value of #FFF08080.

Signature

1
public static Color LightCoral {get;}

Return Value

Color

LightCyan

Summary

Gets a system-defined color that has an ARGB value of #FFE0FFFF.

Signature

1
public static Color LightCyan {get;}

Return Value

Color

LightGoldenrodYellow

Summary

Gets a system-defined color that has an ARGB value of #FFFAFAD2.

Signature

1
public static Color LightGoldenrodYellow {get;}

Return Value

Color

LightGray

Summary

Gets a system-defined color that has an ARGB value of #FFD3D3D3.

Signature

1
public static Color LightGray {get;}

Return Value

Color

LightGreen

Summary

Gets a system-defined color that has an ARGB value of #FF90EE90.

Signature

1
public static Color LightGreen {get;}

Return Value

Color

LightPink

Summary

Gets a system-defined color that has an ARGB value of #FFFFB6C1.

Signature

1
public static Color LightPink {get;}

Return Value

Color

LightSalmon

Summary

Gets a system-defined color that has an ARGB value of #FFFFA07A.

Signature

1
public static Color LightSalmon {get;}

Return Value

Color

LightSeaGreen

Summary

Gets a system-defined color that has an ARGB value of #FF20B2AA.

Signature

1
public static Color LightSeaGreen {get;}

Return Value

Color

LightSkyBlue

Summary

Gets a system-defined color that has an ARGB value of #FF87CEFA.

Signature

1
public static Color LightSkyBlue {get;}

Return Value

Color

LightSlateGray

Summary

Gets a system-defined color that has an ARGB value of #FF778899.

Signature

1
public static Color LightSlateGray {get;}

Return Value

Color

LightSteelBlue

Summary

Gets a system-defined color that has an ARGB value of #FFB0C4DE.

Signature

1
public static Color LightSteelBlue {get;}

Return Value

Color

LightYellow

Summary

Gets a system-defined color that has an ARGB value of #FFFFFFE0.

Signature

1
public static Color LightYellow {get;}

Return Value

Color

Lime

Summary

Gets a system-defined color that has an ARGB value of #FF00FF00.

Signature

1
public static Color Lime {get;}

Return Value

Color

LimeGreen

Summary

Gets a system-defined color that has an ARGB value of #FF32CD32.

Signature

1
public static Color LimeGreen {get;}

Return Value

Color

Linen

Summary

Gets a system-defined color that has an ARGB value of #FFFAF0E6.

Signature

1
public static Color Linen {get;}

Return Value

Color

Magenta

Summary

Gets a system-defined color that has an ARGB value of #FFFF00FF.

Signature

1
public static Color Magenta {get;}

Return Value

Color

Maroon

Summary

Gets a system-defined color that has an ARGB value of #FF800000.

Signature

1
public static Color Maroon {get;}

Return Value

Color

MediumAquamarine

Summary

Gets a system-defined color that has an ARGB value of #FF66CDAA.

Signature

1
public static Color MediumAquamarine {get;}

Return Value

Color

MediumBlue

Summary

Gets a system-defined color that has an ARGB value of #FF0000CD.

Signature

1
public static Color MediumBlue {get;}

Return Value

Color

MediumOrchid

Summary

Gets a system-defined color that has an ARGB value of #FFBA55D3.

Signature

1
public static Color MediumOrchid {get;}

Return Value

Color

MediumPurple

Summary

Gets a system-defined color that has an ARGB value of #FF9370DB.

Signature

1
public static Color MediumPurple {get;}

Return Value

Color

MediumSeaGreen

Summary

Gets a system-defined color that has an ARGB value of #FF3CB371.

Signature

1
public static Color MediumSeaGreen {get;}

Return Value

Color

MediumSlateBlue

Summary

Gets a system-defined color that has an ARGB value of #FF7B68EE.

Signature

1
public static Color MediumSlateBlue {get;}

Return Value

Color

MediumSpringGreen

Summary

Gets a system-defined color that has an ARGB value of #FF00FA9A.

Signature

1
public static Color MediumSpringGreen {get;}

Return Value

Color

MediumTurquoise

Summary

Gets a system-defined color that has an ARGB value of #FF48D1CC.

Signature

1
public static Color MediumTurquoise {get;}

Return Value

Color

MediumVioletRed

Summary

Gets a system-defined color that has an ARGB value of #FFC71585

Signature

1
public static Color MediumVioletRed {get;}

Return Value

Color

MidnightBlue

Summary

Gets a system-defined color that has an ARGB value of #FF191970.

Signature

1
public static Color MidnightBlue {get;}

Return Value

Color

MintCream

Summary

Gets a system-defined color that has an ARGB value of #FFF5FFFA.

Signature

1
public static Color MintCream {get;}

Return Value

Color

MistyRose

Summary

Gets a system-defined color that has an ARGB value of #FFFFE4E1.

Signature

1
public static Color MistyRose {get;}

Return Value

Color

Moccasin

Summary

Gets a system-defined color that has an ARGB value of #FFFFE4B5.

Signature

1
public static Color Moccasin {get;}

Return Value

Color

Summary

Gets a system-defined color that has an ARGB value of #FFFFDEAD.

Signature

1
public static Color NavajoWhite {get;}

Return Value

Color

Summary

Gets a system-defined color that has an ARGB value of #FF000080.

Signature

1
public static Color Navy {get;}

Return Value

Color

OldLace

Summary

Gets a system-defined color that has an ARGB value of #FFFDF5E6.

Signature

1
public static Color OldLace {get;}

Return Value

Color

Olive

Summary

Gets a system-defined color that has an ARGB value of #FF808000.

Signature

1
public static Color Olive {get;}

Return Value

Color

OliveDrab

Summary

Gets a system-defined color that has an ARGB value of #FF6B8E23.

Signature

1
public static Color OliveDrab {get;}

Return Value

Color

Orange

Summary

Gets a system-defined color that has an ARGB value of #FFFFA500.

Signature

1
public static Color Orange {get;}

Return Value

Color

OrangeRed

Summary

Gets a system-defined color that has an ARGB value of #FFFF4500.

Signature

1
public static Color OrangeRed {get;}

Return Value

Color

Orchid

Summary

Gets a system-defined color that has an ARGB value of #FFDA70D6.

Signature

1
public static Color Orchid {get;}

Return Value

Color

PaleGoldenrod

Summary

Gets a system-defined color that has an ARGB value of #FFEEE8AA.

Signature

1
public static Color PaleGoldenrod {get;}

Return Value

Color

PaleGreen

Summary

Gets a system-defined color that has an ARGB value of #FF98FB98.

Signature

1
public static Color PaleGreen {get;}

Return Value

Color

PaleTurquoise

Summary

Gets a system-defined color that has an ARGB value of #FFAFEEEE.

Signature

1
public static Color PaleTurquoise {get;}

Return Value

Color

PaleVioletRed

Summary

Gets a system-defined color that has an ARGB value of #FFDB7093.

Signature

1
public static Color PaleVioletRed {get;}

Return Value

Color

PapayaWhip

Summary

Gets a system-defined color that has an ARGB value of #FFFFEFD5.

Signature

1
public static Color PapayaWhip {get;}

Return Value

Color

PeachPuff

Summary

Gets a system-defined color that has an ARGB value of #FFFFDAB9.

Signature

1
public static Color PeachPuff {get;}

Return Value

Color

Peru

Summary

Gets a system-defined color that has an ARGB value of #FFCD853F.

Signature

1
public static Color Peru {get;}

Return Value

Color

Pink

Summary

Gets a system-defined color that has an ARGB value of #FFFFC0CB.

Signature

1
public static Color Pink {get;}

Return Value

Color

Plum

Summary

Gets a system-defined color that has an ARGB value of #FFDDA0DD.

Signature

1
public static Color Plum {get;}

Return Value

Color

PowderBlue

Summary

Gets a system-defined color that has an ARGB value of #FFB0E0E6.

Signature

1
public static Color PowderBlue {get;}

Return Value

Color

Purple

Summary

Gets a system-defined color that has an ARGB value of #FF800080.

Signature

1
public static Color Purple {get;}

Return Value

Color

Red

Summary

Gets a system-defined color that has an ARGB value of #FFFF0000.

Signature

1
public static Color Red {get;}

Return Value

Color

RosyBrown

Summary

Gets a system-defined color that has an ARGB value of #FFBC8F8F.

Signature

1
public static Color RosyBrown {get;}

Return Value

Color

RoyalBlue

Summary

Gets a system-defined color that has an ARGB value of #FF4169E1.

Signature

1
public static Color RoyalBlue {get;}

Return Value

Color

SaddleBrown

Summary

Gets a system-defined color that has an ARGB value of #FF8B4513.

Signature

1
public static Color SaddleBrown {get;}

Return Value

Color

Salmon

Summary

Gets a system-defined color that has an ARGB value of #FFFA8072.

Signature

1
public static Color Salmon {get;}

Return Value

Color

SandyBrown

Summary

Gets a system-defined color that has an ARGB value of #FFF4A460.

Signature

1
public static Color SandyBrown {get;}

Return Value

Color

SeaGreen

Summary

Gets a system-defined color that has an ARGB value of #FF2E8B57.

Signature

1
public static Color SeaGreen {get;}

Return Value

Color

SeaShell

Summary

Gets a system-defined color that has an ARGB value of #FFFFF5EE.

Signature

1
public static Color SeaShell {get;}

Return Value

Color

Sienna

Summary

Gets a system-defined color that has an ARGB value of #FFA0522D.

Signature

1
public static Color Sienna {get;}

Return Value

Color

Silver

Summary

Gets a system-defined color that has an ARGB value of #FFC0C0C0.

Signature

1
public static Color Silver {get;}

Return Value

Color

SkyBlue

Summary

Gets a system-defined color that has an ARGB value of #FF87CEEB.

Signature

1
public static Color SkyBlue {get;}

Return Value

Color

SlateBlue

Summary

Gets a system-defined color that has an ARGB value of #FF6A5ACD.

Signature

1
public static Color SlateBlue {get;}

Return Value

Color

SlateGray

Summary

Gets a system-defined color that has an ARGB value of #FF708090.

Signature

1
public static Color SlateGray {get;}

Return Value

Color

Snow

Summary

Gets a system-defined color that has an ARGB value of #FFFFFAFA.

Signature

1
public static Color Snow {get;}

Return Value

Color

SpringGreen

Summary

Gets a system-defined color that has an ARGB value of #FF00FF7F.

Signature

1
public static Color SpringGreen {get;}

Return Value

Color

SteelBlue

Summary

Gets a system-defined color that has an ARGB value of #FF4682B4.

Signature

1
public static Color SteelBlue {get;}

Return Value

Color

Tan

Summary

Gets a system-defined color that has an ARGB value of #FFD2B48C.

Signature

1
public static Color Tan {get;}

Return Value

Color

Teal

Summary

Gets a system-defined color that has an ARGB value of #FF008080.

Signature

1
public static Color Teal {get;}

Return Value

Color

Thistle

Summary

Gets a system-defined color that has an ARGB value of #FFD8BFD8.

Signature

1
public static Color Thistle {get;}

Return Value

Color

Tomato

Summary

Gets a system-defined color that has an ARGB value of #FFFF6347.

Signature

1
public static Color Tomato {get;}

Return Value

Color

Turquoise

Summary

Gets a system-defined color that has an ARGB value of #FF40E0D0.

Signature

1
public static Color Turquoise {get;}

Return Value

Color

Violet

Summary

Gets a system-defined color that has an ARGB value of #FFEE82EE.

Signature

1
public static Color Violet {get;}

Return Value

Color

Wheat

Summary

Gets a system-defined color that has an ARGB value of #FFF5DEB3.

Signature

1
public static Color Wheat {get;}

Return Value

Color

White

Summary

Gets a system-defined color that has an ARGB value of #FFFFFFFF.

Signature

1
public static Color White {get;}

Return Value

Color

WhiteSmoke

Summary

Gets a system-defined color that has an ARGB value of #FFF5F5F5.

Signature

1
public static Color WhiteSmoke {get;}

Return Value

Color

Yellow

Summary

Gets a system-defined color that has an ARGB value of #FFFFFF00.

Signature

1
public static Color Yellow {get;}

Return Value

Color

YellowGreen

Summary

Gets a system-defined color that has an ARGB value of #FF9ACD32.

Signature

1
public static Color YellowGreen {get;}

Return Value

Color

Fields

Empty

Summary

Represents empty color.

Signature

1
public static Color Empty;

Return Value

Color