@atlaskit/tokens
Version:
Design tokens are the single source of truth to name and store design decisions.
15 lines (14 loc) • 453 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.hexToRGBAValues = void 0;
var hexToRGBAValues = exports.hexToRGBAValues = function hexToRGBAValues(hex) {
var hexColor = hex.replace('#', '');
return {
r: parseInt(hexColor.slice(0, 2), 16),
g: parseInt(hexColor.slice(2, 4), 16),
b: parseInt(hexColor.slice(4, 6), 16),
a: parseFloat((parseInt(hexColor.slice(6, 8), 16) / 255).toFixed(2))
};
};