figma-use variable create "brand/primary" --collection <id> --type COLOR --value "#3B82F6"
figma-use render ./Button.figma.tsx const colors = defineVars({ primary: { name: 'brand/primary', value: '#3B82F6' }, }) export default () => ( <Frame style={{ backgroundColor: colors.primary }}> <Text style={{ color: '#FFF' }}>Button</Text> </Frame> )