Color Table
The table below is a simple table of colors. Below the table are the methods to convert the Color to Html.
Convert Color to Html public string ColorToHtml(Color color) { return ColorTranslator.ToHtml(Color.FromArgb(color.ToArgb())); } Retreiving Known Colors foreach (KnownColor kc in colors) { Color color = Color.FromKnownColor(kc); string html = ColorToHtml(color); Add to the table... }