Returns true if this color is monochromatic.
true
@override bool get isMonochromatic { final x = ColorMath.round(this.x); return x == ColorMath.round(y) && x == ColorMath.round(z); }