37 lines
1.8 KiB
TypeScript
37 lines
1.8 KiB
TypeScript
import { StyleOption } from '../../../types';
|
|
|
|
export const neoGothicRevival: StyleOption = {
|
|
id: 'neo-gothic-revival',
|
|
name: 'Neo-Gothic Revival',
|
|
category: 'Classic',
|
|
description: 'Inspired by Gothic architecture and medieval manuscripts. Dark, dramatic typography with ecclesiastical gravitas.',
|
|
vibe: 'Medieval, Dramatic, Historic',
|
|
googleFontsImport: 'https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Spectral:wght@400;500;600&display=swap',
|
|
wordConfig: {
|
|
heading1: {
|
|
font: "Cinzel Decorative", size: 28, color: "1A1A1A", bold: true, align: 'center',
|
|
spacing: { before: 480, after: 280, line: 240 },
|
|
border: {
|
|
top: { color: "4A0E0E", space: 12, style: "single", size: 16 },
|
|
bottom: { color: "4A0E0E", space: 12, style: "single", size: 16 }
|
|
}
|
|
},
|
|
heading2: {
|
|
font: "Cinzel Decorative", size: 14, color: "4A0E0E", bold: false, align: 'left',
|
|
spacing: { before: 360, after: 180, line: 240 }
|
|
},
|
|
body: {
|
|
font: "Spectral", size: 11, color: "2C2C2C", align: 'both',
|
|
spacing: { before: 0, after: 180, line: 320 }
|
|
},
|
|
accentColor: "4A0E0E"
|
|
},
|
|
previewCss: `
|
|
font-family: 'Spectral', serif;
|
|
h1 { font-family: 'Cinzel Decorative', cursive; font-size: 28pt; font-weight: 700; color: #1A1A1A; text-align: center; border-top: 3px solid #4A0E0E; border-bottom: 3px solid #4A0E0E; padding: 20px 0; margin-bottom: 32px; }
|
|
h2 { font-family: 'Cinzel Decorative', cursive; font-size: 14pt; color: #4A0E0E; margin-top: 36px; margin-bottom: 18px; }
|
|
p { font-size: 11pt; line-height: 1.8; color: #2C2C2C; margin-bottom: 16px; text-align: justify; }
|
|
blockquote { background: #F5F5EB; padding: 20px; border-left: 4px solid #4A0E0E; margin: 28px 0; font-style: italic; }
|
|
`
|
|
};
|