darken method

HSL darken(
  1. double amount
)

Implementation

HSL darken(double amount) {
  return HSL(h, s, l - amount);
}