Aqui tem um exemplo de como converter de System.Drawing.Color para o formato de cor HTML (HEX ou nome de cor HTML) e vice-versa.
System.Drawing.Color c = System.Drawing.ColorTranslator.FromHtml("#F5F7F8");
String strHtmlColor = System.Drawing.ColorTranslator.ToHtml(c);
post original por Chris