I have a WinForms application and would like to use colors that are not in the default settings of the Color
object, how could I do that? For example:
How the code is:
this.btnLogout.BackColor = System.Drawing.Color.Red;
Example of how I would like to set the color:
//this.btnLogout.BackColor = this.btnLogout.setBackColor("#8003ba" ou "rgb(128, 3, 186)");