379
Sponsor

AMOLED

High contrast dark theme with AMOLED-style pure black.

Terminal

Installation

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

Usage

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