Method: Sass::Script::Value::Color#rgba
- Defined in:
- lib/sass/script/value/color.rb
#rgba ⇒ Array<Integer>
Returns the red, green, blue, and alpha components of the color.
371 372 373 |
# File 'lib/sass/script/value/color.rb', line 371
def rgba
[red, green, blue, alpha].freeze
end
|