379
Sponsor

Matrix

Green code rain inspired theme.

Terminal

Installation

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

Usage

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