Method: Sass::Script::Color#red

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

#redFixnum

The red component of the color.

Returns:

  • (Fixnum)


250
251
252
253
# File 'lib/sass/script/color.rb', line 250

def red
  hsl_to_rgb!
  @attrs[:red]
end