PropertyField Label Color

Hi,

How do I change the text color of the label that appears in front of a property field to white? It does not have any GUIStyle parameters and I do not know which GUI.skin element I should modify.

Thanks.

try using GUI.color

Try this:

string text = "<color=white>" + "What you want to write" + "</color>";
GUI.Label (new Rect (10, 10, 100, 20), text);

More information is here.