Creates a greyscale colour object from percentages 0..100.
Color::GrayScale.new(50)
32 33 34
# File 'lib/coloration/color/grayscale.rb', line 32 def initialize(g = 0) @g = g / 100.0 end