379
Sponsor

Synthwave '84

Retro-futuristic theme with neon colors.

Terminal

Installation

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

Usage

import { ThemeProvider } from "@/components/ui/theme-provider";
import { synthwave84Theme } from "@/lib/terminal-themes/synthwave84";
import { Badge } from "@/components/ui/badge";
 
export function Example() {
  return (
    <ThemeProvider theme={synthwave84Theme}>
      <Badge variant="info">{"Synthwave '84"}</Badge>
    </ThemeProvider>
  );
}