Hey there. I am completely new to this kind of stuff so bare with me I am trying to make a effort in learning though.
that being said, I am confused on how TextStyle and Brushes work. For example I have this code below which works fine!
public readonly Style BrownStyle = new TextStyle(Brushes.Brown, null, FontStyle.Italic);
The problem is that I want to use a custom Argb code instead of standard colors.
I experimented with SolidBrush but it didn't give the desired effect. My question is can I use TextStyle, and still use Argb codes if so how would I go about doing this?
(edit)
Also the code below is the result from experimenting with SolidBrush, it worked fine as well however it bugged out the rest of my code with "Cannot Implicitly Convert Type" Which is caused by me using "Style" Throughout my code.
public readonly SolidBrush BrownStyle= new SolidBrush(Color.FromArgb(255, 255, 255, 255));
@jcsnider @Kibbelz