UNPKG

@atlaskit/tokens

Version:

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

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