c# color hex
this.control.BackColor = System.Drawing.ColorTranslator.FromHtml("#626262");
c# color hex
this.control.BackColor = System.Drawing.ColorTranslator.FromHtml("#626262");
assign color to value in c#
Color redColor = Color.FromArgb(255, 0, 0);
c# color hex
control.BackColor = ColorTranslator.FromHtml("#626262");
c# rgb to consolecolor
// Console.ForegroundColor = RGBToConsoleColor(c);
public ConsoleColor RGBToConsoleColor (Color color) {
if (color.GetSaturation () < 0.5)
switch ((int) (color.GetBrightness () * 3.5)) {
case 0:
return ConsoleColor.Black;
case 1:
return ConsoleColor.DarkGray;
case 2:
return ConsoleColor.Gray;
default:
return ConsoleColor.White;
}
var hue = (int) Math.Round (color.GetHue () / 60, MidpointRounding.AwayFromZero);
if (color.GetBrightness () < 0.4)
switch (hue) {
case 1:
return ConsoleColor.DarkYellow;
case 2:
return ConsoleColor.DarkGreen;
case 3:
return ConsoleColor.DarkCyan;
case 4:
return ConsoleColor.DarkBlue;
case 5:
return ConsoleColor.DarkMagenta;
default:
return ConsoleColor.DarkRed;
}
switch (hue) {
case 1:
return ConsoleColor.Yellow;
case 2:
return ConsoleColor.Green;
case 3:
return ConsoleColor.Cyan;
case 4:
return ConsoleColor.Blue;
case 5:
return ConsoleColor.Magenta;
default:
return ConsoleColor.Red;
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us