lolp1 / Overlay.NET

An easy-to-use overlay library written in C# by Jacob Kemple.
732 stars 87 forks source link

Bad Brushes #20

Closed CorrM closed 5 years ago

CorrM commented 5 years ago

i just cant create brush for all colors expect the MAIN COLORS like red blue green yellow try this int Brush = OverlayWindow.Graphics.CreateBrush(0xFFD700);

it's gold color will not work

lolp1 commented 5 years ago

i just cant create brush for all colors expect the MAIN COLORS like red blue green yellow try this int Brush = OverlayWindow.Graphics.CreateBrush(0xFFD700);

it's gold color will not work

That is not an issue with the library. You must create the color correctly.

var brush = OverlayWindow.Graphics.CreateBrush(System.Drawing.ColorTranslator.FromHtml("#FFFFFF"));