- 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 luxuryEditorial: StyleOption = {
|
|
id: 'luxury-editorial',
|
|
name: 'Luxury Editorial',
|
|
category: 'Editorial',
|
|
description: 'High-fashion magazine inspired design. Elegant serifs with sophisticated spacing and premium feel for upscale content.',
|
|
vibe: 'Fashion, Premium, Sophisticated',
|
|
googleFontsImport: 'https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;700&family=Montserrat:wght@300;400;500&display=swap',
|
|
wordConfig: {
|
|
heading1: {
|
|
font: "Cormorant", size: 36, color: "1C1C1C", bold: false, align: 'center',
|
|
spacing: { before: 480, after: 280, line: 240 }
|
|
},
|
|
heading2: {
|
|
font: "Montserrat", size: 11, color: "1C1C1C", bold: true, align: 'left',
|
|
spacing: { before: 360, after: 180, line: 240 }
|
|
},
|
|
body: {
|
|
font: "Montserrat", size: 10, color: "3A3A3A", align: 'left',
|
|
spacing: { before: 0, after: 180, line: 300 }
|
|
},
|
|
accentColor: "B8860B"
|
|
},
|
|
previewCss: `
|
|
font-family: 'Montserrat', sans-serif;
|
|
h1 { font-family: 'Cormorant', serif; font-size: 36pt; font-weight: 500; color: #1C1C1C; text-align: center; margin-bottom: 32px; letter-spacing: 2px; }
|
|
h2 { font-size: 11pt; font-weight: 500; color: #1C1C1C; margin-top: 36px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 3px; }
|
|
p { font-size: 10pt; line-height: 1.7; color: #3A3A3A; margin-bottom: 16px; font-weight: 300; }
|
|
blockquote { border-top: 1px solid #B8860B; border-bottom: 1px solid #B8860B; padding: 24px 0; margin: 32px 0; text-align: center; font-family: 'Cormorant', serif; font-size: 14pt; font-style: italic; }
|
|
`
|
|
};
|