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 primitives

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.

AttrTypeDescription
<color>tokenHex color, e.g. #007AFF.
<number>tokenNumeric value, e.g. 12.
<string>tokenString 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>