Returns a nicely formatted string of this color.
var w : Color32 = Color.white; print(w.ToString("x"));
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Color32 w = Color.white; void Example() { print(w.ToString("x")); } }