379
Sponsor

Cursor

Cursor IDE theme - clean and modern dark theme.

Terminal

Installation

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

Usage

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