UNPKG

@kcuf/mere-color

Version:

Mere color utils for generating, manipulation, a11y purposes.

7 lines 400 B
import numberToHex from './number-to-hex'; import normalizeColorHex from './normalize-color-hex'; export default function rgbToHex(rgb) { var alphaHex = rgb.a !== undefined && rgb.a < 100 ? numberToHex(rgb.a * 255 / 100) : ''; return normalizeColorHex("#".concat(numberToHex(rgb.r)).concat(numberToHex(rgb.g)).concat(numberToHex(rgb.b)).concat(alphaHex)); } //# sourceMappingURL=rgb-to-hex.js.map