UNPKG

@atlaskit/tokens

Version:

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

12 lines (11 loc) 244 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.alphaFromArgb = alphaFromArgb; /** * Returns the alpha component of a color in ARGB format. */ function alphaFromArgb(argb) { return argb >> 24 & 255; }