379
Sponsor

Carbonfox

Minimal dark theme with carbon tones.

Terminal

Installation

$ pnpm dlx shadcn@latest add @termcn/theme-carbonfox

Usage

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>
  );
}