Method: Sass::Script::Value::Color#rgba

Defined in:
lib/sass/script/value/color.rb

#rgbaArray<Integer>

Returns the red, green, blue, and alpha components of the color.

Returns:

  • (Array<Integer>)

    A frozen four-element array of the red, green, blue, and alpha values (respectively) of the color


371
372
373
# File 'lib/sass/script/value/color.rb', line 371

def rgba
  [red, green, blue, alpha].freeze
end