namespace ColorThiefDotNet
{
///
/// Defines a color in Hue/Saturation/Lightness (HSL) space.
///
public struct HslColor
{
///
/// The Alpha/opacity in 0..1 range.
///
public double A;
///
/// The Hue in 0..360 range.
///
public double H;
///
/// The Lightness in 0..1 range.
///
public double L;
///
/// The Saturation in 0..1 range.
///
public double S;
}
}