379
Sponsor

Cobalt2

Vibrant blue and gold theme with deep contrast.

Terminal

Installation

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

Usage

import { ThemeProvider } from "@/components/ui/theme-provider";
import { cobalt2Theme } from "@/lib/terminal-themes/cobalt2";
import { Badge } from "@/components/ui/badge";
 
export function Example() {
  return (
    <ThemeProvider theme={cobalt2Theme}>
      <Badge variant="info">{"Cobalt2"}</Badge>
    </ThemeProvider>
  );
}