isLightHsp function

bool? isLightHsp(
  1. Color? color
)

Function to determine if a color is light tone. It's based on HSP Color Model color: Argument to determine its status

Implementation

bool? isLightHsp(Color? color) {
  return !isDarkHsp(color)!;
}