import { StyleOption } from '../../../types'; export const tacticalMilitary: StyleOption = { id: 'tactical-military', name: 'Tactical Military', category: 'Industrial', description: 'Military-spec aesthetic. Stencil typography with olive drab and technical readouts.', vibe: 'Tactical, Sturdy, Regulated', googleFontsImport: 'https://fonts.googleapis.com/css2?family=Allerta+Stencil&family=Quantico:wght@400;700&display=swap', wordConfig: { heading1: { font: "Allerta Stencil", size: 28, color: "33691E", bold: false, align: 'left', spacing: { before: 400, after: 200, line: 240 }, border: { bottom: { color: "558B2F", space: 6, style: "single", size: 16 } } }, heading2: { font: "Quantico", size: 14, color: "558B2F", bold: true, align: 'left', spacing: { before: 300, after: 150, line: 240 } }, body: { font: "Quantico", size: 10, color: "1B1B1B", align: 'left', spacing: { before: 0, after: 160, line: 280 } }, accentColor: "33691E" }, previewCss: ` font-family: 'Quantico', sans-serif; background: #F1F8E9; h1 { font-family: 'Allerta Stencil', sans-serif; font-size: 28pt; color: #33691E; border-bottom: 4px solid #558B2F; padding-bottom: 12px; margin-bottom: 24px; text-transform: uppercase; } h2 { font-size: 14pt; font-weight: 700; color: #558B2F; margin-top: 30px; margin-bottom: 14px; text-transform: uppercase; } p { font-size: 10pt; line-height: 1.6; color: #1B1B1B; margin-bottom: 14px; } blockquote { border: 2px solid #33691E; padding: 16px; margin: 20px 0; background: #DCEDC8; font-family: 'Quantico', sans-serif; } ` };