import { StyleOption } from '../../../types'; export const parisianChic: StyleOption = { id: 'parisian-chic', name: 'Parisian Chic', category: 'Fashion', description: 'Sophisticated French aesthetics. Elegant high-contrast serifs with plenty of white space.', vibe: 'Sophisticated, Chic, Minimal', googleFontsImport: 'https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;1,6..96,400&family=Jost:wght@300;400&display=swap', wordConfig: { heading1: { font: "Bodoni Moda", size: 36, color: "000000", bold: true, align: 'center', spacing: { before: 400, after: 240, line: 240 } }, heading2: { font: "Bodoni Moda", size: 16, color: "333333", bold: true, align: 'center', spacing: { before: 320, after: 160, line: 240 }, italic: true }, body: { font: "Jost", size: 10, color: "1A1A1A", align: 'center', spacing: { before: 0, after: 160, line: 300 } }, accentColor: "000000" }, previewCss: ` font-family: 'Jost', sans-serif; h1 { font-family: 'Bodoni Moda', serif; font-size: 36pt; font-weight: 700; color: #000000; text-align: center; margin-bottom: 32px; } h2 { font-family: 'Bodoni Moda', serif; font-size: 16pt; font-weight: 700; color: #333333; text-align: center; margin-top: 36px; margin-bottom: 18px; font-style: italic; } p { font-size: 10pt; line-height: 1.8; color: #1A1A1A; margin-bottom: 16px; text-align: center; font-weight: 300; } blockquote { border-top: 1px solid #000000; border-bottom: 1px solid #000000; padding: 24px; margin: 32px 40px; text-align: center; font-family: 'Bodoni Moda', serif; font-style: italic; } ` };