I can't seem to change the text color via the `Color` property. The color is white and no value I try has any effect.
I have this issue with both Buttons and Labels.
Here's a snippet of my code:
Oxide.Game.Rust.Cui.CuiElementContainer container;
// ...
container.Add(new Oxide.Game.Rust.Cui.CuiButton()
{
Button = { Color = "1 0 0 1", Command = "" },
RectTransform = { AnchorMin = "0 0", AnchorMax = "1 1" },
Text = { Text = "text", FontSize = 18, Align = TextAnchor.MiddleCenter, Color = "0 1 0 1" } // <- Color has no effect
}, "parent", "name"
); 
