The Tailwind export generates aDocumentation Index
Fetch the complete documentation index at: https://docs.humic.dev/llms.txt
Use this file to discover all available pages before exploring further.
theme.extend object that you can use in your tailwind.config.ts. It maps tokens to the correct Tailwind theme sections automatically.
Output format
Token type mapping
| Humic type | Tailwind section |
|---|---|
color | colors |
spacing | spacing |
radius | borderRadius |
font.size | fontSize |
font.weight | fontWeight |
font.family | fontFamily |
font.lineHeight | lineHeight |
font.letterSpacing | letterSpacing |
shadow | boxShadow |
opacity | opacity |
duration | transitionDuration |
easing | transitionTimingFunction |
z-index | zIndex |
How it works
The Tailwind export references CSS custom properties (var(--...)) rather than embedding raw values. This means:
- Dark mode works automatically — the CSS variables change when you switch
data-theme, so Tailwind utilities adapt without extra configuration - Single source of truth — values live in your CSS variables file, not duplicated in the Tailwind config
- Smaller config — the Tailwind config stays clean and readable

