UNPKG

@atlaskit/tokens

Version:

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

6 lines 132 B
/** * Returns the alpha component of a color in ARGB format. */ export function alphaFromArgb(argb) { return argb >> 24 & 255; }