API Diff between 0.16.4 and 0.16.3
39 Additions
0 Removals
AngleSharp.Css.Values
-
public struct Color : IEquatable<Color>, IComparable<Color>, ICssPrimitiveValue, ICssValue
- public static readonly Color Black
- public static readonly Color Blue
- public static readonly Color CurrentColor
- public static readonly Color Green
- public static readonly Color InvertedColor
- public static readonly Color Magenta
- public static readonly Color PureGreen
- public static readonly Color Red
- public static readonly Color Transparent
- public static readonly Color White
- public static bool UseHex { get; set; }
- public byte A { get; }
- public double Alpha { get; }
- public byte B { get; }
- public string CssText { get; }
- public byte G { get; }
- public byte R { get; }
- public int Value { get; }
- public Color(byte r, byte g, byte b)
- public Color(byte r, byte g, byte b, byte a)
- public static Color FromFlexHex(string color)
- public static Color FromGray(byte number, double alpha = 1)
- public static Color FromGray(double value, double alpha = 1)
- public static Color FromHex(string color)
- public static Color FromHsl(double h, double s, double l)
- public static Color FromHsla(double h, double s, double l, double alpha)
- public static Color FromHwb(double h, double w, double b)
- public static Color FromHwba(double h, double w, double b, double alpha)
- public static Color? FromName(string name)
- public static Color FromRgb(byte r, byte g, byte b)
- public static Color FromRgba(byte r, byte g, byte b, double a)
- public static Color FromRgba(double r, double g, double b, double a)
- public static Color Mix(Color above, Color below)
- public static Color Mix(double alpha, Color above, Color below)
- public static bool op_Equality(Color a, Color b)
- public static bool op_Inequality(Color a, Color b)
- public static bool TryFromHex(string color, out Color value)
- public bool Equals(Color other)