# Cursor

Cursor IDE theme - clean and modern dark theme.

## Installation

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

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

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

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

export const cursorTheme: Theme = {
  border: {
    color: "#e4e4e45e",
    focusColor: "#82d2ce",
    style: "round",
  },
  colors: {
    accent: "#88c0d0",
    accentForeground: "#181818",
    background: "#181818",
    border: "#e4e4e45e",
    error: "#e34671",
    errorForeground: "#181818",
    focusRing: "#82d2ce",
    foreground: "#e4e4e4",
    info: "#81a1c1",
    infoForeground: "#181818",
    muted: "#0d0d0d",
    mutedForeground: "#e4e4e45e",
    primary: "#88c0d0",
    primaryForeground: "#181818",
    secondary: "#242424",
    secondaryForeground: "#e4e4e4",
    selection: "#88c0d0",
    selectionForeground: "#181818",
    success: "#3fa266",
    successForeground: "#181818",
    warning: "#f1b467",
    warningForeground: "#181818",
  },
  name: "cursor",
  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 { cursorTheme } from "@/lib/terminal-themes/cursor";
import { Badge } from "@/components/ui/badge";

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