Returns true if this color is monochromatic.
true
@override bool get isMonochromatic { final perceivedBrightness = ColorMath.round(this.perceivedBrightness); return perceivedBrightness == 0 || ColorMath.round(saturation) == 0; }