UNPKG

@atlaskit/tokens

Version:

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

6 lines 131 B
/** * Returns the green component of a color in ARGB format. */ export function greenFromArgb(argb) { return argb >> 8 & 255; }