@fantasy-color/normalize-rgba
v2.1.0
Published
Transform from RGBA objects from the 0-255 range to 0.1 decimal points
Downloads
18
Keywords
Readme
@fantasy-color/normalize-rgba
Turn an RGBA
color value from 0-255 to take a value from 0-1
type normalizeRgba = (color: RGBA) => RGBA
Example usage:
import normalizeRgba from '@fantasy-color/normalize-rgba'
normalizeRgba({
red: 255,
green: 70,
blue: 50,
alpha: 0.3
})
// > { red: 1, green: 0.27450980392156865, blue: 0.19607843137254902, alpha: 0.3 }