lighten method

Color lighten([
  1. double amount = .2
])

Returns a lighten variant of this color.

Implementation

Color lighten([double amount = .2]) {
  assert(amount >= 0 && amount <= 1);

  if (amount == 0) {
    return this;
  }

  final hsl = HSLColor.fromColor(this);
  final hslLight = hsl.withLightness(
    (hsl.lightness + amount).clamp(0.0, 1.0),
  );

  return hslLight.toColor();
}