GUI.color Manual     Reference     Scripting  
Scripting > Runtime Classes > GUI
GUI.color

static var color : Color

Description

Global tinting color for the GUI.

This will affect both backgrounds & text colors.

See Also: backgroundColor, contentColor.


Yellow Color on the GUI Controls.

JavaScript
// Tints all GUI drawed elements with yellow.
function OnGUI() {
GUI.color = Color.yellow;
GUI.Label (Rect (10, 10, 100, 20), "Hello World!");
GUI.Box(Rect(10, 50, 50, 50), "A BOX");
GUI.Button(Rect(10,110,70,30), "A button");

}