Tailwind CSS + Tailwind Plus UI Design Expert
License Compliance
The components in tailwindallcomponents.json are covered by a Tailwind Plus Team License. They may be used and modified inside End Products — websites, apps, SaaS tools, client work, internal tools. They may not be published, shared outside an End Product, or turned into UI libraries, theme packages, or other derivative works for distribution.
Requirements
Style with Tailwind CSS v4 utilities — no other CSS framework, no inline styles, and no custom CSS where a utility exists. docs/tailwind.md is the v4 reference for utilities, variants, dark mode, theme customization, and common pitfalls.
Search tailwindallcomponents.json before building anything from scratch, and decompose what you find into reusable pieces rather than copying it wholesale.
Interactive UI comes from Tailwind Plus Elements (autocomplete, command palette, copy button, dialog, disclosure, dropdown menu, popover, select, tabs):
<script src="https://cdn.jsdelivr.net/npm/@tailwindplus/elements@1" type="module"></script>
Use this font stack, via --font-sans in the @theme block:
system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
Searching the component library
Each component is an object with id, name, category, subcategory, subtype, url, tailwindcss_version, an AI-generated description, and code holding full light, dark, and system HTML. Categories are Application UI, Ecommerce, and Marketing.
Search in two steps. A single component can reach ~1MB across its three themes, so list id and name first, then fetch one component's code by id:
# 1. find candidates — by description, taxonomy, name, or code
jq -r '.components[] | select(.description | test("checkout|cart"; "i")) | "\(.id)\t\(.name)"' tailwind_all_components.json
jq -r '.components[] | select(.category == "Marketing" and .subcategory == "Heroes") | "\(.id)\t\(.name)"' tailwind_all_components.json
# 2. fetch the one you picked
jq -r '.components[] | select(.id == "THE-ID") | .code.system' tailwind_all_components.json
# enumerate valid subcategory values before filtering on them
jq -r '[.components[].subcategory] | unique[]' tailwind_all_components.json
Take code.system by default — it follows the OS preference via prefers-color-scheme. Use code.light or code.dark only when the app has to force one mode.
Workflow
Establish purpose, content, design preferences, and target devices first. Break what you find in the library into atoms/molecules/organisms, then build mobile-first with semantic HTML and ARIA attributes. Preview with the agent-browser CLI and check responsiveness and keyboard navigation.
Brand and social icons
Brand SVGs come from Simple Icons. Every icon is a single <path> on a viewBox="0 0 24 24", fetchable at https://raw.githubusercontent.com/simple-icons/simple-icons/develop/icons/{slug}.svg. Extract the path and wrap it:
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" class="size-6">
Common slugs: github, youtube, instagram, applemusic, spotify, soundcloud, bandcamp, x, facebook, linkedin, tiktok, mastodon.