379
Sponsor

Everforest

Warm dark theme with forest green tones.

Terminal

Installation

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

Usage

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