What problem does it solve? Translating Figma design variables into correct code tokens is error-prone: developers often write redundant classnames like bg-background-base or invent theme keys that don't exist. This Skill provides the exact mapping rules from Figma CSS variables to Lumen design system tokens on both web and React Native. ## Core Features & Use Cases - Figma variable to Tailwind mapping: Converts variables like var(--background-base) into correct utility classes (bg-base), covering colors, spacing, radius, border width, typography, and shadows. - Figma variable to themeJS mapping: Maps the same variables to React Native t.* paths such as t.colors.bg.base, t.spacings.s4, and t.typographies.body3. - Missing-token handling: Defines a workflow for sizes without tokens — use the closest token, document the deviation in a comment, and consider requesting a new token. - Use Case: While implementing a Button component from a Figma link in libs/ui-react, you read var(--text-on-accent) in Figma and correctly write text-on-accent instead of the redundant text-text-on-accent. ## Quick Start Read the Figma design for this component and convert its variables into the correct Lumen tokens for the lib I'm working in.