.NET API 1,232,384 bytes
GradientStop
More information can be found at the W3C:
http://dev.w3.org/csswg/css-images-3/#color-stop-syntax
namespace AngleSharp.
Css.
Values
{
public struct GradientStop
{
private readonly Color _color;
private readonly Length _location;
public Color Color =>
_color;
public Length Location =>
_location;
public GradientStop(
Color color,
Length location)
{
_color =
color;
_location =
location;
}
}
}