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