class Sass::Constant::Color

def mod(other)

def mod(other)
  if other.is_a? Sass::Constant::String
    raise NoMethodError.new(nil, :mod)
  else
    piecewise(other, :%)
  end
end