Blends this color with another color
Color blend(Color other, double ratio) { return Color.lerp(this, other, ratio.clamp(0.0, 1.0)) ?? this; }