design-tokens-cli
design-tokens-cli copied to clipboard
Set of design tokens and a custom properties parser for prototyping
It would be nice if it was possible to control the prefixes that get added to the output variables. I am grouping my tokens primarily because I don't want to...
My input is a design.tokens.json file: ```json { "tiny": { "$value": "8px" }, "small": { "$value": "16px" }, "medium": { "$value": "24px" }, "large": { "$value": "32px" }, "xlarge": {...
Currently, references are resolved by finding and applying the true value. ```json { "token-1": "#fff", "token-2": "{ token.1 }" } ``` ...results in this Sass: ```css $token-1: #fff; $token-2: #fff;...