ICellStyle cellStyle = workbook.CreateCellStyle();
cellStyle.FillPattern = FillPattern.SolidForeground;
cellStyle.FillForegroundColor = ;
cell.CellStyle = cellStyle;
在设置FillForegroundColor的同时需要设置FillPattern。
FillForegroundColor接收的事一个short类型的值,每个颜色对应的值可以在网上搜一下找到。