Components
Theme Inheritance
Delta Components are designed to be "theme-agnostic." They do not ship with their own colors or fonts. Instead, they inherit the CSS variables defined in your project's globals.css (e.g., --primary, --muted-foreground, --radius).
If your project is already set up with shadcn/ui, Delta Components will automatically match your existing brand immediately upon installation.
Customizing Themes
You can preview how Delta Components look across different artistic directions using the Themes page.
To apply a specific theme to your project:
- Browse the style tiles on the Themes page.
- Click the
{ } Codebutton on your desired theme card. - Copy the CSS variables provided.
- Paste them into your
globals.cssfile, replacing the existing values in your:rootand.darkblocks.
Styling Components
Since you own the code, customization is done directly via Tailwind utility classes.
// Example: Changing the background color of an Admonition
<Admonition
className="bg-blue-50 border-blue-200" // Overrides default generic styles
type="info"
>
...
</Admonition>Build Better User Experiences
Discover open source components that make the difference in your applications. Copy, paste, and customize to create exceptional user interfaces.
Browse components