# Design Tokens Reference

Provide the design tokens in JSON or YAML format. Example:
```json
{
  "colors": {
    "primary": "#1E40AF",
    "secondary": "#F59E0B"
  },
  "spacing": {
    "sm": "4px",
    "md": "8px",
    "lg": "16px"
  },
  "borderRadius": "4px",
  "fontFamily": "Helvetica, Arial, sans-serif"
}
```

These tokens will be referenced directly in the generated component code.

# Accessibility Rules
- Every interactive element must have a visible focus outline.
- Use `aria-label` when the button text is icon‑only.
- Ensure contrast ratio ≥ 4.5:1 for text against background.