# Vercel

Vercel's official brand colors.

## Installation

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

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

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

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

export const vercelTheme: Theme = {
  border: {
    color: "#454545",
    focusColor: "#f75590",
    style: "round",
  },
  colors: {
    accent: "#8e4ec6",
    accentForeground: "#000000",
    background: "#000000",
    border: "#454545",
    error: "#e5484d",
    errorForeground: "#000000",
    focusRing: "#f75590",
    foreground: "#ededed",
    info: "#52a8ff",
    infoForeground: "#000000",
    muted: "#0a0a0a",
    mutedForeground: "#878787",
    primary: "#0070f3",
    primaryForeground: "#000000",
    secondary: "#1a1a1a",
    secondaryForeground: "#ededed",
    selection: "#0070f3",
    selectionForeground: "#000000",
    success: "#46a758",
    successForeground: "#000000",
    warning: "#ffb224",
    warningForeground: "#000000",
  },
  name: "vercel",
  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 { vercelTheme } from "@/lib/terminal-themes/vercel";
import { Badge } from "@/components/ui/badge";

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