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