Method: Color::GrayScale#html
- Defined in:
- lib/coloration/color/grayscale.rb
#html ⇒ Object
Present the colour as an HTML/CSS colour string.
67 68 69 70 |
# File 'lib/coloration/color/grayscale.rb', line 67 def html gs = "%02x" % to_255 "##{gs * 3}" end |