Version: 2017.3
public Color normalColor ;

Description

Normal Color.

using UnityEngine;
using System.Collections;
using UnityEngine.UI; // Required when Using UI elements.

public class ExampleClass : MonoBehaviour { public Button button; public Color newColor;

void Start() { //Changes the button's Normal color to the new color. ColorBlock cb = button.colors; cb.normalColor = newColor; button.colors = cb; } }