color changing script

I have a character, when he gets angry I wanted to make him turn red.
Does anyone know the way I can use a script to access that characters mesh color and change it to red?

Well, if you are using a material with a color property, then it’s

transform.renderer.material.color = Color.red;

No need for that.