Version: 5.3
public static Color operator - (Color a, Color b);

설명

Subtracts color b from color a. Each component is subtracted separately.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Color redColor = Color.magenta - Color.blue; }