379
Sponsor

Gruvbox

Retro-style theme with warm earth tones.

Terminal

Installation

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

Usage

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