Can't create orange label

Hey guys, so i want to create an orange text color label, but it turns yellow.

I have this: Color newColor = new Color(255, 127, 0, 255); (i think this is the code for orange)

but it shows yellow for some reason. I used this color to:

public GUIStyle Style;
Style.normal.textcolor = newColor;

It worked for other custom colors but not for orange, what to do?

1 is from 0-1, not 0-255

you have to create rgb colors from 0 to 1.

orange color has the rgb color 255, 165, 0

to get 165 in relation, use the formula (165 * 100 / 255) / 100

Color _orange = new Color(1.0f, 0.64f, 0.0f);

Ok, so how can i create orange?