of static method

CPDFThemes of(
  1. Color color
)

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);
}