UNPKG

@atlaskit/tokens

Version:

Design tokens are the single source of truth to name and store design decisions.

3 lines 114 B
export function rgbToHex(r, g, b) { return '#' + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1); }