# Rose Pine

Dark theme with warm rose tones.

## Installation

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

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

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

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

export const rosepineTheme: Theme = {
  border: {
    color: "#6e6a86",
    focusColor: "#31748f",
    style: "round",
  },
  colors: {
    accent: "#ebbcba",
    accentForeground: "#191724",
    background: "#191724",
    border: "#6e6a86",
    error: "#eb6f92",
    errorForeground: "#191724",
    focusRing: "#31748f",
    foreground: "#e0def4",
    info: "#9ccfd8",
    infoForeground: "#191724",
    muted: "#100f18",
    mutedForeground: "#6e6a86",
    primary: "#9ccfd8",
    primaryForeground: "#191724",
    secondary: "#262330",
    secondaryForeground: "#e0def4",
    selection: "#9ccfd8",
    selectionForeground: "#191724",
    success: "#31748f",
    successForeground: "#191724",
    warning: "#f6c177",
    warningForeground: "#191724",
  },
  name: "rosepine",
  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 { rosepineTheme } from "@/lib/terminal-themes/rosepine";
import { Badge } from "@/components/ui/badge";

export function Example() {
  return (
    <ThemeProvider theme={rosepineTheme}>
      <Badge variant="info">{"Rose Pine"}</Badge>
    </ThemeProvider>
  );
}
```