CssColor.hsl constructor

CssColor.hsl(
  1. int h,
  2. int s,
  3. int l
)

HSL color (hue: 0-360, saturation: 0-100, lightness: 0-100).

Implementation

factory CssColor.hsl(int h, int s, int l) = _CssHslColor;