Method: Sass::Script::Value::Color#hue
- Defined in:
- lib/sass/script/value/color.rb
#hue ⇒ Numeric
The hue component of the color.
322 323 324 325 |
# File 'lib/sass/script/value/color.rb', line 322
def hue
rgb_to_hsl!
@attrs[:hue]
end
|