| static FromCmyk(float, float, float, float) | Returns a new Color with the requested cyan, magenta, yellow, key (black) values. |
| static FromCmyka(float, float, float, float, float) | Returns a new Color with the requested cyan, magenta, yellow, key (black), alpha values. |
| static FromGray(float) | Returns a new Color with the requested gray value. |
| static FromHsl(float, float, float) | Returns a new Color with the requested hue, saturation, saturation values. |
| static FromHsla(float, float, float, float) | Returns a new Color with the requested hue, saturation, saturation, alpha values. |
| static FromHsv(float, float, float) | Returns a new Color with the requested hue, saturation, value. |
| static FromHsva(float, float, float, float) | Returns a new Color with the requested hue, saturation, value, alpha. |
| static FromHwb(float, float, float) | Returns a new Color with the requested hue, whiteness, blackness values. |
| static FromHwba(float, float, float, float) | Returns a new Color with the requested hue, whiteness, blackness values. |
| static FromInt(int) | Returns a new Color with the requested ARGB value. |
| static FromLab(float, float, float) | Returns a new Color with the requested lightness, A, B values. |
| static FromLaba(float, float, float, float) | Returns a new Color with the requested lightness, A, B, alpha values. |
| static FromLch(float, float, float) | Returns a new Color with the requested luminance, chroma, hue values. |
| static FromLcha(float, float, float, float) | Returns a new Color with the requested luminance, chroma, hue, alpha values. |
| static FromOklab(float, float, float) | Returns a new Color with the requested lightness, A, B values for OKLAB model. |
| static FromOklaba(float, float, float, float) | Returns a new Color with the requested lightness, A, B, alpha values for OKLAB model. |
| static FromOklch(float, float, float) | Returns a new Color with the requested luminance, chroma, hue values for OKLAB model. |
| static FromOklcha(float, float, float, float) | Returns a new Color with the requested luminance, chroma, hue, alpha values for OKLAB model. |
| static FromRgb(byte, byte, byte) | Returns a new Color with the requested ged, green, blue values. All color components must be in the range 0-255. |
| static FromRgb(float, float, float) | Returns a new Color with the requested ged, green, blue values. All color components must be in the range 0-1. |
| static FromRgb(int, int, int) | Returns a new Color with the requested ged, green, blue values. All color components must be in the range 0-255. |
| static FromRgba(byte, byte, byte, byte) | Returns a new Color with the requested ged, green, blue, alpha values. All color components must be in the range 0-255. |
| static FromRgba(float, float, float, float) | Returns a new Color with the requested ged, green, blue, alpha values. All color components must be in the range 0-1. |
| static FromRgba(int, int, int, int) | Returns a new Color with the requested ged, green, blue, alpha values. All color components must be in the range 0-255. |
| static FromString(String) | Parses String containing the CSS color and returns a new Color. |
| static FromUint(uint) | Returns a new Color with the requested ARGB value. |
| addLuminosity(float) | Creates copy of the Color with Sum of its luminosity and the delta value. |
| convert(ColorModel) | Returns a color components in the format of the specified color model. |
| equals(object) | Determines whether the specified Color is equal to this instance. |
| getComplementary() | Returns a new color that is on the opposite side of the color wheel from the original. |
| getHashCode() | Returns a hash code. |
| getHue() | Returns a Hue of the Color. |
| getLuminosity() | Returns a luminosity of the Color. |
| getSaturation() | Returns a saturation of the Color. |
| toInt() | Encodes the Color ARGB components into int. |
| toName() | Returns the name of the color if it matches a color in the list of CSS named colors, or an empty String. |
| toNaturalColorString(int) | Returns a Natural colors (NCol) specified color using a color letter with a number to specify the distance (in percent) from the color. |
| toRgbaHexString() | Returns a Hexadecimal color is specified with: #RRGGBBAA. |
| toRgbaString() | Returns a String containing the RGBA color specified by: rgba(R, G, B, A). |
| toRgbHexString() | Returns a hexadecimal color is specified with: #RRGGBB. |
| toRgbString() | Returns a String containing the RGB color specified by: rgb(R, G, B). |
| toString() | Returns a String that consists of the RGBA component values. |
| toUint() | Encodes the Color ARGB components into unsigned int. |
| withAlpha(float) | Creates copy of the Color with specified alpha component. |
| withHue(float) | Creates copy of the Color with specified Hue. |
| withLuminosity(float) | Creates copy of the Color with specified luminosity. |
| withSaturation(float) | Creates copy of the Color with specified saturation. |