UNPKG

@atlaskit/tokens

Version:

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

6 lines 195 B
/** * Converts a color from RGB components to ARGB format. */ export function argbFromRgb(red, green, blue) { return (255 << 24 | (red & 255) << 16 | (green & 255) << 8 | blue & 255) >>> 0; }