379
Sponsor

Aura

Soft, elegant theme with pastel purple tones.

Terminal

Installation

$ pnpm dlx shadcn@latest add @termcn/theme-aura

Usage

import { ThemeProvider } from "@/components/ui/theme-provider";
import { auraTheme } from "@/lib/terminal-themes/aura";
import { Badge } from "@/components/ui/badge";
 
export function Example() {
  return (
    <ThemeProvider theme={auraTheme}>
      <Badge variant="info">{"Aura"}</Badge>
    </ThemeProvider>
  );
}