Version: 2018.2

説明

Color から Color32 に暗黙的に変換することができます。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Color32 color = new Color(0.5f, 1f, 0.5f, 1f); } }