hue15 property

Color hue15

Implementation

Color get hue15 {
  final hsvColor = HSVColor.fromColor(this);
  final hue = hsvColor.hue;
  final newHue = hue > 250 ? hue - 15 : hue + 15;
  return hsvColor.withHue(newHue).toColor();
}