How do i change this numbers color for GUI.Label?

GUI.Label(new Rect(200, 0, 100, 25), “<color=black>Money: ”+money);

How would i make “money” black?

Try
GUI.contentColor = Color.black;
GUI.Label(new Rect(200, 0, 100, 25), “black”, + Money;

I haven’t tested it so Idk if that’ll work but in theory it should