- 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
33 lines
1.6 KiB
TypeScript
33 lines
1.6 KiB
TypeScript
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; }
|
|
`
|
|
};
|