@fantasy-color/rgb-to-rgba
v2.1.0
Published
Transform RGB objects to RGBA objects
Downloads
17
Keywords
Readme
@fantasy-color/rgb-to-rgba
Transform a RGB
color object to a RGBA
color object.
type rgbToRgba = (color: RGB) => RGBA
Example usage:
import rgbToRgba from '@fantasy-color/rgb-to-rgba'
rgbToRgba({
red: 60,
green: 32,
blue: 23
})
// { red: 60, green: 32, blue: 23, alpha: 1 }