379
Sponsor

Mercury

Clean and minimal dark theme.

Terminal

Installation

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

Usage

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