mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
28 lines
642 B
C#
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;
|
|
}
|
|
} |