inline Color operator ~() const;
The operator ~ function returns a new color created from the bitwise NOT, also known as a one's complement, of the current color.
A new Color containing the bitwise not of the 32-bit current color.
Color color(170,136,34); // color is #00AA8822 color = ~color; // color is #ff5577dd