complementary property

  1. @override
PdfColorHsv get complementary
override

Returns a complementary color with hue shifted by -120°.

Implementation

@override
PdfColorHsv get complementary =>
    PdfColorHsv((hue - 120) % 360, saturation, value, alpha);