# Carbonfox

Minimal dark theme with carbon tones.

## Installation

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

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

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

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

export const carbonfoxTheme: Theme = {
  border: {
    color: "#6f6f6f",
    focusColor: "#be95ff",
    style: "round",
  },
  colors: {
    accent: "#ff8389",
    accentForeground: "#393939",
    background: "#393939",
    border: "#6f6f6f",
    error: "#ff8389",
    errorForeground: "#393939",
    focusRing: "#be95ff",
    foreground: "#f2f4f8",
    info: "#78a9ff",
    infoForeground: "#393939",
    muted: "#2d2d2d",
    mutedForeground: "#6f6f6f",
    primary: "#33b1ff",
    primaryForeground: "#393939",
    secondary: "#454545",
    secondaryForeground: "#f2f4f8",
    selection: "#33b1ff",
    selectionForeground: "#393939",
    success: "#42be65",
    successForeground: "#393939",
    warning: "#f1c21b",
    warningForeground: "#393939",
  },
  name: "carbonfox",
  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 { carbonfoxTheme } from "@/lib/terminal-themes/carbonfox";
import { Badge } from "@/components/ui/badge";

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