lighten method

ColorValue lighten(
  1. double amount
)

Implementation

ColorValue lighten(double amount) {
  final rgb = toHSL().lighten(amount).toRGB();
  return ColorValue._(rgb[0], rgb[1], rgb[2], a);
}