isDisliked static method
Returns true if color is disliked.
Disliked is defined as a dark yellow-green that is not neutral.
Implementation
static bool isDisliked(Hct hct) {
final huePasses = hct.hue.round() >= 90 && hct.hue.round() <= 111;
final chromaPasses = hct.chroma.round() > 16;
final tonePasses = hct.tone.round() < 65;
return huePasses && chromaPasses && tonePasses;
}