Files
2025-10-23 22:38:31 +08:00

28 lines
642 B
C#

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