Color.operator +
static function operator +(a: Color, b: Color): Color;
Description

Adds two colors together. Each component is added separately.

	// blue + red = magenta
	var result : Color = Color.blue + Color.red;