// Shared tokens + tiny components used across the full Fongos landing page. // Deep-black base, purple #7c3aed + cyan #06b6d4, monospace accents. window.FONGOS = { bg: '#020208', bg2: '#05050d', surface: 'rgba(255,255,255,0.02)', surface2: 'rgba(255,255,255,0.035)', ink: '#e8e8f0', inkDim: 'rgba(232,232,240,0.6)', inkFaint: 'rgba(232,232,240,0.32)', inkGhost: 'rgba(232,232,240,0.12)', purple: '#7c3aed', purpleSoft: '#a78bfa', purpleDeep: '#5b21b6', cyan: '#06b6d4', cyanSoft: '#67e8f9', line: 'rgba(232,232,240,0.08)', lineStrong: 'rgba(232,232,240,0.16)', good: '#4ade80', bad: '#f87171', warn: '#fbbf24', mono: '"JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace', sans: '"Inter Tight", "Helvetica Neue", Helvetica, system-ui, sans-serif', }; function Chip({ children, dot = true, color, style = {} }) { const c = color || FONGOS.cyan; return ( {dot && } {children} ); } function SectionLabel({ num, name }) { return (
§{num} {name}
); } // Headline helper — thin 200-weight, tight tracking, purple accent word function Headline({ children, size = 68, style = {} }) { return (

{children}

); } function TopNav() { return ( ); } Object.assign(window, { Chip, SectionLabel, Headline, TopNav });