A new format is proposed to include all modes (e.g., dark mode) into a single token using an 'extensions' field, specifically 'org.lukasoppermann.modes', to better integrate with tools like Style Dictionary.
Hey @0m4r, I found a way of making multiple values work with style dictionary. I am proposing a new format to include all modes into a token: ```json5 "accent": { "description": "", "type": "color", "value": "{base.color.blue.5}", "extensions": { "org.lukasoppermann.modes": { // adding this "dark": "{base.color.blue.7}", }, "org.lukasoppermann.figmaDesignTokens": { "mode": "light", "collection": "mode", "scopes": [ "SHAPE_FILL", "TEXT_FILL" ], "variableId": "VariableID:27057:2696", "exportKey": "variables" } } }, ``` Basically we remove all the mode stuff from the structure, etc. and just add it to the extension as a simple key (mode name) and value (mode value) pair. ```json5 "org.lukasoppermann.modes": { // adding this