colorIsBright function

bool colorIsBright(
  1. Color background
)

Implementation

bool colorIsBright(Color background) {
  return background.computeLuminance() >= 0.5;
}