UNPKG

@tokens-studio/sd-transforms

Version:

Custom transforms for Style-Dictionary, to work with Design Tokens that are exported from Tokens Studio

6 lines (5 loc) 156 B
export function transparentize(color, amount) { const _color = color; _color.alpha = Math.max(0, Math.min(1, Number(amount))); return _color; }