import { StyleOption } from '../../../types'; export const baroqueSplendor: StyleOption = { id: 'baroque-splendor', name: 'Baroque Splendor', category: 'Classic', description: 'Heavy, dramatic 17th-century luxury. Deep golds and crimsons with deeply flourished script.', vibe: 'Luxurious, Dramatic, Heavy', googleFontsImport: 'https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&family=Mate:wght@400;500&display=swap', wordConfig: { heading1: { font: "Mrs Saint Delafield", size: 48, color: "800000", bold: false, align: 'center', spacing: { before: 520, after: 320, line: 240 } }, heading2: { font: "Mate", size: 16, color: "B8860B", bold: true, align: 'center', spacing: { before: 400, after: 200, line: 240 } }, body: { font: "Mate", size: 12, color: "3D2B1F", align: 'both', spacing: { before: 0, after: 180, line: 320 } }, accentColor: "B8860B" }, previewCss: ` font-family: 'Mate', serif; h1 { font-family: 'Mrs Saint Delafield', cursive; font-size: 48pt; color: #800000; text-align: center; margin-bottom: 36px; } h2 { font-size: 16pt; font-weight: 700; color: #B8860B; text-align: center; margin-top: 40px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; } p { font-size: 12pt; line-height: 1.8; color: #3D2B1F; margin-bottom: 16px; text-align: justify; } blockquote { background: #FFF8E7; border: 2px double #B8860B; padding: 24px; margin: 32px 0; text-align: center; font-style: italic; } ` };