Method: Sass::Script::Value::Color#hue

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

#hueNumeric

The hue component of the color.

Returns:

  • (Numeric)


322
323
324
325
# File 'lib/sass/script/value/color.rb', line 322

def hue
  rgb_to_hsl!
  @attrs[:hue]
end