Applies lightness percentage to color.
Color withLightness(double percentage) { final HSLColor hslColor = HSLColor.fromColor(this); return hslColor.withLightness(percentage).toColor(); }