# File lib/sass/script/value/number.rb, line 95 def plus(other) if other.is_a? Number operate(other, :+) elsif other.is_a?(Color) other.plus(self) else super end end