For the complete documentation index, see llms.txt. Markdown variants are available by appending .md to any URL or sending an Accept: text/markdown header. An agent skill is available at /.well-known/agent-skills/site-skill.md.
/
306
Sponsor

Modern

All-Helvetica typography, slate-cool neutrals with subtle violet accent.

Installation

$ pnpm dlx shadcn@latest add @pdfcn/theme-modern

Usage

import { PdfcnThemeProvider } from "@/components/pdf/theme-provider";
import { modernTheme } from "@/lib/pdf-themes/modern";
 
export function Invoice() {
  return (
    <PdfcnThemeProvider theme={modernTheme}>
      {/* Your PDF content */}
    </PdfcnThemeProvider>
  );
}