# Vesper

Minimal stark theme with high contrast.

## Installation

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

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

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

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

export const vesperTheme: Theme = {
  border: {
    color: "#8b8b8b",
    focusColor: "#a0a0a0",
    style: "round",
  },
  colors: {
    accent: "#ff8080",
    accentForeground: "#101010",
    background: "#101010",
    border: "#8b8b8b",
    error: "#ff8080",
    errorForeground: "#101010",
    focusRing: "#a0a0a0",
    foreground: "#ffffff",
    info: "#ffc799",
    infoForeground: "#101010",
    muted: "#080808",
    mutedForeground: "#8b8b8b",
    primary: "#ffc799",
    primaryForeground: "#101010",
    secondary: "#181818",
    secondaryForeground: "#ffffff",
    selection: "#ffc799",
    selectionForeground: "#101010",
    success: "#99ffe4",
    successForeground: "#101010",
    warning: "#ffc799",
    warningForeground: "#101010",
  },
  name: "vesper",
  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 { vesperTheme } from "@/lib/terminal-themes/vesper";
import { Badge } from "@/components/ui/badge";

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