import { StyleOption } from '../../../types'; export const filmScript: StyleOption = { id: 'film-script', name: 'Film Script', category: 'Editorial', description: 'Hollywood screenplay format. Courier font, specific margins, and character name centering.', vibe: 'Cinematic, Format, Draft', googleFontsImport: 'https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap', wordConfig: { heading1: { font: "Courier Prime", size: 12, color: "000000", bold: true, align: 'left', spacing: { before: 240, after: 240, line: 240 }, allCaps: true, underline: true }, heading2: { font: "Courier Prime", size: 12, color: "000000", bold: true, align: 'center', spacing: { before: 480, after: 0, line: 240 }, allCaps: true }, body: { font: "Courier Prime", size: 12, color: "000000", align: 'left', spacing: { before: 0, after: 0, line: 240 } }, accentColor: "000000" }, previewCss: ` font-family: 'Courier Prime', monospace; h1 { font-size: 12pt; font-weight: 700; color: #000000; text-decoration: underline; text-transform: uppercase; margin-bottom: 12px; } h2 { font-size: 12pt; font-weight: 700; color: #000000; text-transform: uppercase; text-align: center; margin-top: 24px; margin-bottom: 0px; } p { font-size: 12pt; line-height: 1; color: #000000; margin-bottom: 12px; } blockquote { margin: 0 40px; text-align: center; } ` };