# Aura

Soft, elegant theme with pastel purple tones.

## Installation

  <TabsTrigger value="cli">Command</TabsTrigger>
  <TabsTrigger value="manual">Manual</TabsTrigger>

```bash
npx shadcn@latest add @termcn/theme-aura
```

<Step>Copy and paste the following code into your project.</Step>

```ts
import type { Theme } from "@/components/ui/theme-provider";

export const auraTheme: Theme = {
  border: {
    color: "#6d6a7e",
    focusColor: "#a277ff",
    style: "round",
  },
  colors: {
    accent: "#ff6767",
    accentForeground: "#15141b",
    background: "#15141b",
    border: "#6d6a7e",
    error: "#ff6767",
    errorForeground: "#15141b",
    focusRing: "#a277ff",
    foreground: "#edecee",
    info: "#82e2ff",
    infoForeground: "#15141b",
    muted: "#242329",
    mutedForeground: "#6d6a7e",
    primary: "#a277ff",
    primaryForeground: "#15141b",
    secondary: "#2a2834",
    secondaryForeground: "#edecee",
    selection: "#a277ff",
    selectionForeground: "#15141b",
    success: "#61ffca",
    successForeground: "#15141b",
    warning: "#ffca85",
    warningForeground: "#15141b",
  },
  name: "aura",
  spacing: {
    0: 0,
    1: 1,
    2: 2,
    3: 3,
    4: 4,
    6: 6,
    8: 8,
  },
  typography: {
    base: "",
    bold: true,
    lg: "bold",
    sm: "dim",
    xl: "bold",
  },
};
```

<Step>Update the import paths to match your project setup.</Step>

## Usage

```tsx
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>
  );
}
```