UNPKG

@atlaskit/tokens

Version:

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

6 lines 128 B
/** * Returns the red component of a color in ARGB format. */ export function redFromArgb(argb) { return argb >> 16 & 255; }