# File lib/color/grayscale.rb, line 197
  def -(other)
    other = other.to_grayscale 
    ng = self.dup
    ng.g -= other.g
    ng
  end