UNPKG

@kcuf/mere-color

Version:

Mere color utils for generating, manipulation, a11y purposes.

6 lines 245 B
import normalizeHexValue from './normalize-hex-value'; export default function numberToHex(value) { var hex = normalizeHexValue(value).toString(16); return hex.length === 1 ? "0".concat(hex) : hex; } //# sourceMappingURL=number-to-hex.js.map