You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating color palettes, exporting by going to "Use > Design Tokens" only exports ALL the colors as a single json object.
It would be helpful to export the palette with objects per color family (gray, blue, green, etc.).
Current
{
"color": {
"light": {
"gray100": {
...all the grays....
},
...rest of colors....
"yellow100": {
....all the yellows....
},
}
}
Ask
{
"color": {
"light": {
"gray": {
"gray100": {
...all the grays....
},
...rest of colors....
"yellow": {
"yellow100": {
....all the yellows....
},
}
}
Why do you need this feature?
When importing color tokens to Figma, having the color families in an object will help so they are not one large list in the Figma color styles.
Updating this manually is very time consuming and actually breaks color style links.
Additional context
The text was updated successfully, but these errors were encountered:
Description
When creating color palettes, exporting by going to "Use > Design Tokens" only exports ALL the colors as a single json object.
It would be helpful to export the palette with objects per color family (gray, blue, green, etc.).
Current
Ask
Why do you need this feature?
When importing color tokens to Figma, having the color families in an object will help so they are not one large list in the Figma color styles.
Updating this manually is very time consuming and actually breaks color style links.
Additional context
The text was updated successfully, but these errors were encountered: