Method: Sass::Script::Color#hue

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

#hueNumeric

The hue component of the color.

Returns:

  • (Numeric)


274
275
276
277
# File 'lib/sass/script/color.rb', line 274

def hue
  rgb_to_hsl!
  @attrs[:hue]
end