Override EditorStyles

I’ve asked a similar question before but have yet to get a definite answer. How can we override EditorStyles? Is this even possible?

Example: EditorStyles.label controls the color of the prefix label on IntField, FloatField and other Editor controls. Passing a custom style will only affect the number field. I would like to use a custom style with these prefix labels.

I can’t believe it was this simple. All you have to do is directly manipulate the EditorStyles.

EditorStyles.label.normal.textColor = Color.white;