lighten method

HSL lighten(
  1. double amount
)

Implementation

HSL lighten(double amount) {
  return HSL(h, s, l + amount);
}