--- name: Replit description: Light, warm-cream developer aesthetic inspired by Replit's IDE — terminal chrome, dot-grid texture, orange glow, and Space Grotesk headlines. --- # Replit ## Palette | Role | Value | Notes | | -------- | ------------------------ | -------------------------------------------------- | | bg | `#FAF6F1` | Primary warm-cream page background | | text | `#2F3034` | Primary copy — near-black warm ink | | accent | `#FF3C00` | Replit orange-red — callouts, eyebrow, key numbers | | surface | `#FFFFFF` | Card / panel / code-window background | | panel | `#F3EDE5` | Window title bar / recessed surface | | border | `rgba(47,48,52,0.10)` | Subtle hairline border on light surfaces | | muted | `#6E6F77` | Secondary copy, labels, footer | | subtle | `rgba(47,48,52,0.55)` | Body secondary copy on cream | | onAccent | `#FAF6F1` | Text / marks placed on orange fills | | glow | `rgba(255,60,0,0.16)` | Orange radial glow overlay | ## Typography - Display font: `"Space Grotesk", system-ui, -apple-system, sans-serif` — weight 700–800 for headlines. - Body font: `"IBM Plex Sans", system-ui, -apple-system, sans-serif` — weight 400–500. - Mono font: `"IBM Plex Mono", ui-monospace, Menlo, monospace` — weight 400–500, used for eyebrows, labels, and code. - Google Fonts import: `https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=IBM+Plex+Sans:wght@400;500&family=IBM+Plex+Mono:wght@400;500&display=swap` - Type-scale overrides (only what differs from `slide-authoring` defaults): - Hero title: 164px, `fontWeight: 700`, `letterSpacing: '-0.04em'`, `lineHeight: 0.96` - Section heading: 80px, `fontWeight: 700`, `letterSpacing: '-0.03em'`, `lineHeight: 1.06` - Body text: 34–40px - Eyebrow / label: 22px mono, `letterSpacing: '0.16em'`, `textTransform: 'uppercase'` ## Layout - Content padding: 120–140px from canvas edges (1920×1080). - Alignment: left-aligned, single column for hero pages; 2-column grid for feature pages. - Grid: `gridTemplateColumns: '1fr 1fr'`, `gap: 72px` for two-column layouts. - Card padding: `22px 28px` — `borderRadius: 10`. ## Decorative motifs ### DotGrid Replit's signature halftone texture — dark dots applied at low opacity over the cream canvas as a positional background layer. ```tsx const DotGrid = ({ opacity = 0.05 }: { opacity?: number }) => (
); ``` ### OrangeGlow Directional radial glow placed off-canvas at a corner — adds warmth to the cream page. ```tsx const OrangeGlow = ({ corner = 'top-right' }: { corner?: 'top-right' | 'top-left' | 'bottom-right' }) => { const pos: React.CSSProperties = corner === 'top-right' ? { top: -120, right: -120 } : corner === 'top-left' ? { top: -160, left: -160 } : { bottom: -140, right: -140 }; return ( ); }; ``` ### WindowShell Replit-IDE chrome: three traffic-light dots + a monospaced title bar. A light editor — white code area, warm-cream title bar. Use to frame code snippets or terminal output. ```tsx const WindowShell = ({ title = 'index.tsx', children }: { title?: string; children?: React.ReactNode }) => (The complete platform for building, running, and deploying software — right from your browser.