Method: Color::GrayScale#html

Defined in:
lib/color/grayscale.rb

#htmlObject

Present the colour as an HTML/CSS colour string.



77
78
79
80
# File 'lib/color/grayscale.rb', line 77

def html
  gs = "%02x" % to_255
  "##{gs * 3}"
end