我需要创建一个具有自定义彩色单元格和边框的表格。 Color
类中定义了一些常量,但我需要一个自定义颜色。我需要#a6cb0b作为标题和边框线的背景颜色,颜色代码为#cccccc。我该如何设置它们?
Table table = new Table(new float[]{1,1,1});
Cell cell = new Cell();
cell.add(new Paragraph("TITLE"));
cell.setBackgroundColor(Color.???);
table.addCell(cell);
...
...