Method: Sass::Script::Color#hsl
- Defined in:
- lib/sass/script/color.rb
#hsl ⇒ Array<Fixnum>
Returns the hue, saturation, and lightness components of the color.
323 324 325 |
# File 'lib/sass/script/color.rb', line 323
def hsl
[hue, saturation, lightness].freeze
end
|