Devup UI provides a Figma plugin that bridges the gap between design and development. Convert Figma layers directly to Devup UI code and export design tokens to devup.json.
Or visit the Figma Community page directly.
Select any layer in Figma and convert it to Devup UI component code:
Example Output:
1<Box 2 bg="#ffffff" 3 borderRadius="8px" 4 boxShadow="0 4px 6px rgba(0, 0, 0, 0.1)" 5 p={4} 6 w="320px" 7> 8 <Text color="#000000" fontSize="24px" fontWeight={700}> 9 Card Title 10 </Text> 11</Box>1<Box 2 bg="#ffffff" 3 borderRadius="8px" 4 boxShadow="0 4px 6px rgba(0, 0, 0, 0.1)" 5 p={4} 6 w="320px" 7> 8 <Text color="#000000" fontSize="24px" fontWeight={700}> 9 Card Title 10 </Text> 11</Box>
Export your Figma styles as devup.json configuration:
devup.jsonSupported Token Types:
The plugin automatically detects:
For best results, organize your Figma styles with consistent naming:
Colors:
primarysecondarytextbackgroundTypography:
heading/h1heading/h2bodycaptionCreate Figma color style collections for different themes:
The plugin will export these as separate theme variants in devup.json.
For issues or feature requests, visit the GitHub repository.