class Sass::Constant::Number

def plus(other)

def plus(other)
  if other.is_a? Number
    operate(other, :+)
  elsif other.is_a? Color
    other.plus(self)
  else
    Sass::Constant::String.from_value(self.to_s + other.to_s)
  end
end