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