diff --git a/pkg/soagen/applicability.go b/pkg/soagen/applicability.go index 2f41b0faf..3e9c6fbdc 100644 --- a/pkg/soagen/applicability.go +++ b/pkg/soagen/applicability.go @@ -33,19 +33,19 @@ func (a Applicability) String() string { } func (a Applicability) MarshalExcel() ExcelValue { - color := "#FFB6C1" // Light red for not applicable + color := "FFB6C1" // Light red for not applicable if a.IsApplicable { - color = "#90EE90" // Light green for applicable + color = "90EE90" // Light green for applicable } return ExcelValue{ Value: a.Value, Style: &excelize.Style{ Border: []excelize.Border{ - {Type: "left", Color: "#000000", Style: 1}, - {Type: "top", Color: "#000000", Style: 1}, - {Type: "bottom", Color: "#000000", Style: 1}, - {Type: "right", Color: "#000000", Style: 1}, + {Type: "left", Color: "000000", Style: 1}, + {Type: "top", Color: "000000", Style: 1}, + {Type: "bottom", Color: "000000", Style: 1}, + {Type: "right", Color: "000000", Style: 1}, }, Fill: excelize.Fill{Type: "pattern", Color: []string{color}, Pattern: 1}, Alignment: &excelize.Alignment{Horizontal: "center", Vertical: "center", WrapText: true},