I had a HSSF workbook with my custom colors in it but now it turns out I need to use XSSF to create xslx files.
I have changed everything accordingly but the only thing that has me stumped is how to use a custom made XSSFColor in something like this :
XSSFPatternFormatting YesForm = YesRule.createPatternFormatting(); YesForm.setFillBackgroundColor(IndexedColors.GREEN.getIndex());
This worked fine when I had my custom pallet but xssf doesn't seem to have anything similar or am I mistaken?
Thank you in advance.