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) 243 B
import Color from 'colorjs.io'; export function mix(color, colorSpace, amount, mixColor) { const mixValue = Math.max(0, Math.min(1, Number(amount))); return new Color(color.mix(mixColor, mixValue, { space: colorSpace }).toString()); }