Method: Sass::Script::Value::Color#hsla
- Defined in:
- lib/sass/script/value/color.rb
#hsla ⇒ Array<Integer>
Returns the hue, saturation, lightness, and alpha components of the color.
387 388 389 |
# File 'lib/sass/script/value/color.rb', line 387
def hsla
[hue, saturation, lightness, alpha].freeze
end
|