module Sass::Script::Functions

def hsl(hue, saturation, lightness)

Raises:
  • (ArgumentError) - if `saturation` or `lightness` are out of bounds

Other tags:
    See: #hsla -

Returns:
  • (Color) - The resulting color

Parameters:
  • lightness (Number) -- The lightness of the color.
  • saturation (Number) -- The saturation of the color.
  • hue (Number) -- The hue of the color.
def hsl(hue, saturation, lightness)
  hsla(hue, saturation, lightness, Number.new(1))
end