33 lines
1.6 KiB
TypeScript
33 lines
1.6 KiB
TypeScript
import { StyleOption } from '../../../types';
|
|
|
|
export const newspaperClassic: StyleOption = {
|
|
id: 'newspaper-classic',
|
|
name: 'Newspaper Classic',
|
|
category: 'Editorial',
|
|
description: 'Traditional newspaper layout with strong typographic hierarchy. Bold headlines, readable body text, and authoritative presence.',
|
|
vibe: 'News, Authority, Information',
|
|
googleFontsImport: 'https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=PT+Serif:wght@400;700&display=swap',
|
|
wordConfig: {
|
|
heading1: {
|
|
font: "Playfair Display", size: 36, color: "000000", bold: true, align: 'center',
|
|
spacing: { before: 240, after: 160, line: 220 }
|
|
},
|
|
heading2: {
|
|
font: "Playfair Display", size: 16, color: "000000", bold: true, align: 'left',
|
|
spacing: { before: 240, after: 120, line: 240 }
|
|
},
|
|
body: {
|
|
font: "PT Serif", size: 10, color: "1A1A1A", align: 'both',
|
|
spacing: { before: 0, after: 120, line: 280 }
|
|
},
|
|
accentColor: "000000"
|
|
},
|
|
previewCss: `
|
|
font-family: 'PT Serif', serif;
|
|
h1 { font-family: 'Playfair Display', serif; font-size: 36pt; font-weight: 900; color: #000000; text-align: center; border-bottom: 2px solid #000000; padding-bottom: 12px; margin-bottom: 20px; }
|
|
h2 { font-family: 'Playfair Display', serif; font-size: 16pt; font-weight: 700; color: #000000; margin-top: 24px; margin-bottom: 12px; }
|
|
p { font-size: 10pt; line-height: 1.6; color: #1A1A1A; margin-bottom: 10px; text-align: justify; }
|
|
blockquote { font-size: 14pt; font-style: italic; text-align: center; margin: 24px 40px; }
|
|
`
|
|
};
|