# Shades of Purple

Bold purple theme with vibrant accents.

## Installation

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

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

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

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

export const shadesofpurpleTheme: Theme = {
  border: {
    color: "#b362ff",
    focusColor: "#c792ff",
    style: "round",
  },
  colors: {
    accent: "#ff7ac6",
    accentForeground: "#1a102b",
    background: "#1a102b",
    border: "#b362ff",
    error: "#ff7ac6",
    errorForeground: "#1a102b",
    focusRing: "#c792ff",
    foreground: "#f5f0ff",
    info: "#7dd4ff",
    infoForeground: "#1a102b",
    muted: "#100918",
    mutedForeground: "#b362ff",
    primary: "#c792ff",
    primaryForeground: "#1a102b",
    secondary: "#2a2035",
    secondaryForeground: "#f5f0ff",
    selection: "#c792ff",
    selectionForeground: "#1a102b",
    success: "#7be0b0",
    successForeground: "#1a102b",
    warning: "#ffd580",
    warningForeground: "#1a102b",
  },
  name: "shadesofpurple",
  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 { shadesofpurpleTheme } from "@/lib/terminal-themes/shadesofpurple";
import { Badge } from "@/components/ui/badge";

export function Example() {
  return (
    <ThemeProvider theme={shadesofpurpleTheme}>
      <Badge variant="info">{"Shades of Purple"}</Badge>
    </ThemeProvider>
  );
}
```