From ebb67d536f21bae46f5558494d22379009fe2b6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nut=2E=E0=B9=84=E0=B8=9B=E0=B9=80=E0=B8=A3=E0=B8=B7?= =?UTF-8?q?=E0=B9=88=E0=B8=AD=E0=B8=A2?= Date: Tue, 1 Sep 2026 12:10:46 +0700 Subject: [PATCH] style(kpi): change strategic-issue header band color to #CAD1EB Was XLColor.PurpleX11; requested lighter blue-purple for the kpi_performance_result Excel export section header bars. --- Controllers/kpi_performance_result.Controller.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Controllers/kpi_performance_result.Controller.cs b/Controllers/kpi_performance_result.Controller.cs index 8199c0c..c846474 100644 --- a/Controllers/kpi_performance_result.Controller.cs +++ b/Controllers/kpi_performance_result.Controller.cs @@ -108,10 +108,10 @@ namespace rmutr_report.Controllers if (!header.is_reference_section) no++; ws.Cell(row, 1).SetValue(kpiname).Style.Font.Bold = true; // ws.Cell(row, 2).Value = header.header_1; - ws.Cell(row, 1).Style.Fill.BackgroundColor = XLColor.PurpleX11; + ws.Cell(row, 1).Style.Fill.BackgroundColor = XLColor.FromHtml("#CAD1EB"); ws.Cell(row, 1).Style.Border.OutsideBorder = XLBorderStyleValues.None; - ws.Range(ws.Cell(row, 1), ws.Cell(row, 10)).Merge().Style.Fill.BackgroundColor = XLColor.PurpleX11; + ws.Range(ws.Cell(row, 1), ws.Cell(row, 10)).Merge().Style.Fill.BackgroundColor = XLColor.FromHtml("#CAD1EB"); ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left; ws.Cell(row, 1).Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;