36 lines
1.7 KiB
TypeScript
36 lines
1.7 KiB
TypeScript
import { StyleOption } from '../../../types';
|
|
|
|
export const risographPrint: StyleOption = {
|
|
id: 'risograph-print',
|
|
name: 'Risograph Print',
|
|
category: 'Creative',
|
|
description: 'Independent publishing style. Grainy textures, misalignment, and vibrant spot colors (Pink/Teal).',
|
|
vibe: 'Artistic, Indie, Textured',
|
|
googleFontsImport: 'https://fonts.googleapis.com/css2?family=Eb+Garamond:ital,wght@0,400;0,700;1,400&family=Karla:wght@400;700&display=swap',
|
|
wordConfig: {
|
|
heading1: {
|
|
font: "Eb Garamond", size: 42, color: "FF007F", bold: true, align: 'left', // Riso Pink
|
|
spacing: { before: 400, after: 200, line: 200 },
|
|
italic: true
|
|
},
|
|
heading2: {
|
|
font: "Karla", size: 14, color: "000000", bold: true, align: 'left',
|
|
spacing: { before: 320, after: 160, line: 240 },
|
|
shading: { fill: "00A9FF", color: "auto", style: "clear" } // Riso Blue background
|
|
},
|
|
body: {
|
|
font: "Karla", size: 10, color: "1A1A1A", align: 'left',
|
|
spacing: { before: 0, after: 160, line: 280 }
|
|
},
|
|
accentColor: "FF007F"
|
|
},
|
|
previewCss: `
|
|
font-family: 'Karla', sans-serif;
|
|
background: #FFFEF0;
|
|
h1 { font-family: 'Eb Garamond', serif; font-size: 42pt; font-weight: 700; font-style: italic; color: #FF007F; margin-bottom: 24px; mix-blend-mode: multiply; }
|
|
h2 { font-size: 14pt; font-weight: 700; color: #000000; background: #00A9FF; display: inline-block; padding: 4px 10px; margin-top: 32px; margin-bottom: 16px; }
|
|
p { font-size: 10pt; line-height: 1.6; color: #1A1A1A; margin-bottom: 14px; }
|
|
blockquote { border-left: 6px solid #FF007F; padding-left: 16px; margin: 24px 0; color: #555; font-style: italic; }
|
|
`
|
|
};
|