Colors can be implicitly converted to and from Vector4.
// Convert a white color to a vector4 var aVector4 : Vector4 = Color.white;
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Vector4 aVector4 = Color.white; }