Method: Sass::Script::Value::Color#lightness

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

#lightnessNumeric

The lightness component of the color.



338
339
340
341
# File 'lib/sass/script/value/color.rb', line 338

def lightness
  rgb_to_hsl!
  @attrs[:lightness]
end