Components
Installation
$ pnpm dlx shadcn@latest add @pdfcn/theme-vivid
Usage
import { PdfcnThemeProvider } from "@/components/pdf/theme-provider";
import { vividTheme } from "@/lib/pdf-themes/vivid";
export function Invoice() {
return (
<PdfcnThemeProvider theme={vividTheme}>
{/* Your PDF content */}
</PdfcnThemeProvider>
);
}