Color withValues({double? r, double? g, double? b, double? a}) => Color(r: r ?? this.r, g: g ?? this.g, b: b ?? this.b, a: a ?? this.a);