IGradient
The common interface for all CSS gradients.
using System.Collections.Generic;
namespace AngleSharp.Css.Values
{
public interface IGradient : IImageSource
{
IEnumerable<GradientStop> Stops { get; }
bool IsRepeating { get; }
}
}