Method: Sass::Script::Color#inspect
- Defined in:
- lib/sass/script/color.rb
#inspect ⇒ String
Returns a string representation of the color.
505 506 507 |
# File 'lib/sass/script/color.rb', line 505
def inspect
alpha? ? rgba_str : hex_str
end
|