Appearance
function toRgbaString(color): string;
Returns a CSS rgba(r, g, b, a) string from an RgbColor object.
rgba(r, g, b, a)
RgbColor
color
string
toRgbaString({ r: 255, g: 102, b: 0, a: 0.5 }) // => 'rgba(255, 102, 0, 0.5)'
1.0.0