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