Lightens the color by blending it with white.
Color lighten([double factor = 0.1]) { return Color.lerp(this, Colors.white, factor.clamp(0.0, 1.0)) ?? this; }