33 lines
1.5 KiB
TypeScript
33 lines
1.5 KiB
TypeScript
import { StyleOption } from '../../../types';
|
|
|
|
export const dutchGoldenAge: StyleOption = {
|
|
id: 'dutch-golden-age',
|
|
name: 'Dutch Golden Age',
|
|
category: 'Classic',
|
|
description: 'Inspired by 17th century Dutch art and typography. Rich, painterly aesthetics with Rembrandt-era elegance.',
|
|
vibe: 'Classical, Rich, Painterly',
|
|
googleFontsImport: 'https://fonts.googleapis.com/css2?family=Pirata+One&family=Gentium+Book+Plus:wght@400;700&display=swap',
|
|
wordConfig: {
|
|
heading1: {
|
|
font: "Pirata One", size: 32, color: "3E2723", bold: false, align: 'center',
|
|
spacing: { before: 480, after: 280, line: 240 }
|
|
},
|
|
heading2: {
|
|
font: "Gentium Book Plus", size: 14, color: "5D4037", bold: true, align: 'left',
|
|
spacing: { before: 360, after: 180, line: 240 }
|
|
},
|
|
body: {
|
|
font: "Gentium Book Plus", size: 11, color: "4E342E", align: 'both',
|
|
spacing: { before: 0, after: 180, line: 320 }
|
|
},
|
|
accentColor: "BF8040"
|
|
},
|
|
previewCss: `
|
|
font-family: 'Gentium Book Plus', serif;
|
|
h1 { font-family: 'Pirata One', cursive; font-size: 32pt; color: #3E2723; text-align: center; margin-bottom: 32px; }
|
|
h2 { font-size: 14pt; font-weight: 700; color: #5D4037; margin-top: 36px; margin-bottom: 18px; }
|
|
p { font-size: 11pt; line-height: 1.8; color: #4E342E; margin-bottom: 16px; text-align: justify; }
|
|
blockquote { background: #EFEBE9; padding: 20px; border: 1px solid #BF8040; margin: 28px 0; }
|
|
`
|
|
};
|