I have a snippet of iTextSharp code that sets the background of a cell in a PDF file to green:
PdfPCell cellSec2 = new PdfPCell(parSectionHeading2);
cellSec2.BackgroundColor = BaseColor.GREEN;
The issue I am encountering is that "BaseColor.GREEN" produces a color that is too dark or intense for my liking. I am looking for more of a verdigris shade - something light green or pale green. Is it feasible to specify RGB (or RGBA) values to achieve the desired BackgroundColor?
UPDATE
Combining Bruno's response with this resource, I found the solution I was seeking:
var lightGreen = new BaseColor(204, 255, 204);
cellSec2.BackgroundColor = lightGreen;