Returns the three colors of a triadic color scheme.
List<Color> get triadic { final hsl = HSLColor.fromColor(this); return [ this, hsl.withHue((hsl.hue + 120) % 360).toColor(), hsl.withHue((hsl.hue + 240) % 360).toColor(), ]; }