Design system primitives. Referenced anywhere in the tree with $name. Figma Variables resolve to <tokens> entries. Only tokens used in the exported tree are emitted.
tokens
tagdesign primitivesDesign system primitives. Referenced anywhere in the tree with $name. Figma Variables resolve to <tokens> entries. Only tokens used in the exported tree are emitted.
| Attr | Type | Description |
|---|---|---|
<color> | token | Hex color, e.g. #007AFF. |
<number> | token | Numeric value, e.g. 12. |
<string> | token | String value, e.g. Inter. |
Example
<tokens> <color name="primary" value="#007AFF" /> <number name="radius-card" value="12" /> <string name="font-base" value="Inter" /> </tokens> <col fill="$surface" p="$space-md" gap="12"> <rect fill="$primary" radius="$radius-card" w="fill" h="52" /> </col>