of static method
Implementation
static CPDFThemes of(Color color) {
final hex = color.toHex();
return {
light.color: light,
dark.color: dark,
sepia.color: sepia,
reseda.color: reseda,
}[hex.toUpperCase()] ?? CPDFThemes.custom(color);
}