379
Sponsor

Orng

Vibrant orange theme with high contrast.

Terminal

Installation

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

Usage

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