inverted property
Adjusts this colors hue by 180
degrees while inverting the
saturation and brightness values.
Implementation
@override
HsbColor get inverted =>
HsbColor((hue + 180) % 360, 100 - saturation, 100 - brightness, alpha);
Adjusts this colors hue by 180
degrees while inverting the
saturation and brightness values.
@override
HsbColor get inverted =>
HsbColor((hue + 180) % 360, 100 - saturation, 100 - brightness, alpha);