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