Method: Sass::Script::Value::Color#green

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

#greenInteger

The green component of the color.

Returns:

  • (Integer)


306
307
308
309
# File 'lib/sass/script/value/color.rb', line 306

def green
  hsl_to_rgb!
  @attrs[:green]
end