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