Method: Sass::Script::Functions#green
- Defined in:
- lib/sass/script/functions.rb
#green($color) ⇒ Sass::Script::Value::Number
Gets the green component of a color. Calculated from HSL where necessary via this algorithm.
881 882 883 884 |
# File 'lib/sass/script/functions.rb', line 881
def green(color)
assert_type color, :Color, :color
number(color.green)
end
|