Method: Sass::Script::Value::Color#green
- Defined in:
- lib/sass/script/value/color.rb
#green ⇒ Integer
The green component of the color.
306 307 308 309 |
# File 'lib/sass/script/value/color.rb', line 306
def green
hsl_to_rgb!
@attrs[:green]
end
|