I created a label and need to change the color of it programmatically to a specific RGB color code, if a certain event triggers.
I tried it like this:
statusStripTestLabel.ForeColor = new Color(128, 64, 64);
BONUS:
Set it to a RGBA color.
But I get Color does not have a constructor which accepts 3 arguments.
So how do I solve this?