Code Syntax
What It Does
The Code Syntax node defines code snippets for different platforms (Web, Android, iOS) that will appear in the Figma variables panel. It helps developers understand how to use design tokens in code.
Inputs
| Name | Description | Type | Required |
|---|---|---|---|
| Token | The design token to add code syntax to | Token | Yes |
| Web | Web platform code syntax | Text | No |
| Android | Android platform code syntax | Text | No |
| iOS | iOS platform code syntax | Text | No |
Outputs
| Name | Description | Type |
|---|---|---|
| Token | The design token with added code syntax | Token |
How to Use It
- Drag the Code Syntax node into your graph.
- Connect a design token to the "Token" input.
- Add code snippets for specific platforms (e.g.,
$colors.primaryfor Web,R.color.primaryfor Android). - The token will now display these code references when published to Figma.
Tips
- Only add syntax for platforms your team actually uses to avoid confusion.
- Use platform-specific naming conventions to make the code useful for developers.
See Also
- Publish Variable: For controlling whether this token is published to Figma users.
- Scope By Type: For automatically assigning appropriate Figma scopes.
Use Cases
- Design System Integration: Provide developers with ready-to-use code snippets for each design token.
- Cross-Platform Development: Display different syntax for each platform where the design token will be used.
- Developer Handoff: Streamline the implementation process by showing exactly how to reference variables in code.