1Sponsor

Catppuccin

A Catppuccin theme for rich terminal UI previews.

Terminal

Installation

pnpm dlx shadcn@latest add https://termcn.dev/r/theme-catppuccin.json

Usage

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