invert method

Color invert()

Implementation

Color invert() =>
    withRed(255 - red).withGreen(255 - green).withBlue(255 - blue);