- Ported Minimalist templates to JSON (Swiss Grid, Brutalist, etc.) - Ported Tech templates to JSON (SaaS, Terminal, Cyberpunk, etc.) - Ported Creative templates to JSON (Art Gallery, Zine, Pop Art, etc.) - Ported Industrial templates to JSON (Blueprint, Factory, Schematic, etc.) - Ported Nature templates to JSON (Botanical, Ocean, Mountain, etc.) - Ported Lifestyle templates to JSON (Cookbook, Travel, Coffee House, etc.) - Ported Vintage templates to JSON (Art Deco, Medieval, Retro 80s, etc.) - Updated README.md to reflect the new JSON-based style system (example configuration and contribution workflow) - Completed migration of over 150 styles to the new architecture
36 lines
1.4 KiB
TypeScript
36 lines
1.4 KiB
TypeScript
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; }
|
|
`
|
|
};
|