Returns true if this color is pure white.
true
@override bool get isWhite => ColorMath.round(cyan) == 0 && ColorMath.round(magenta) == 0 && ColorMath.round(yellow) == 0 && ColorMath.round(black) == 0;