how to change the color of an object in unity from script code example
Example: unity set material color
//Gets the renderer material and sets color
object.GetComponent<Renderer>().material.color = newColor;
//Gets the renderer material and sets color
object.GetComponent<Renderer>().material.color = newColor;