The problem:
I am using EEPlus.
I am stuck at applying a hex color code, e.g. #B7DEE8, for a cell in my Excel sheet.
#B7DEE8
I got the following (wo
Try this
Color colFromHex = System.Drawing.ColorTranslator.FromHtml("#B7DEE8"); ws.Cells["A1:B1"].Style.Fill.PatternType = ExcelFillStyle.Solid; ws.Cells["A1:B1"].Style.Fill.BackgroundColor.SetColor(colFromHex);