Autopilot Design System
Comprehensive design tokens and component reference for Autopilot — the AI autonomous company-operating platform. Covers both the marketing website and the live dashboard application.
Color Brushwork
Clean white foundation with warm orange accent. Minimal brushwork emphasizing content over chrome.
Typography
Inter for all UI text. Georgia serif for the Autopilot logotype. Clean, readable hierarchy.
Spacing Scale
4px base unit with consistent scale for layout rhythm.
Borders & Shadows
Rounded corners and subtle elevation for depth.
Border Radius
Shadows
Buttons
Pill-shaped CTAs with clear hierarchy. Primary black, accent orange, secondary outlined.
Inputs
Simple, clean form elements with orange focus states.
Dashboard Colors
The live dashboard uses the same brushwork with additional semantic colors for status and activity indicators.
Task Cards
Dashed orange border cards showing active AI agent tasks. Status dot pulses to indicate real-time activity.
Live Badge
Animated indicator showing real-time platform status.
Business Metrics
Bold numbers with green growth indicators. Left-aligned with label/value/change pattern.
Business
Badges & Tags
Status indicators and category labels with semantic colors.
Feed Components
Twitter feed previews and email activity rows from the live dashboard.
Chat CTA
Full-width dark call-to-action for the live chat interface.
Live Chat
Ask Autopilot anything.
Toggles
Simple toggle switches for settings and preferences.
CSS Custom Properties
Ready-to-paste CSS variables for implementing the Autopilot design system.
Tailwind Mapping
The paired JSON export now includes a tailwind section with theme extensions and component recipes. Use these mappings instead of default Tailwind tokens when recreating this system.
// tailwind.config.js
import designSystem from './design-system.json';
export default {
theme: {
extend: designSystem.tailwind.website.theme.extend,
},
};
// Swap to designSystem.tailwind.app.theme.extend for app/portal surfaces.
| Scope | Primary | Body Font | Radius | Shadow | Breakpoint |
|---|---|---|---|---|---|
| Website | #E8722A | 'Inter', -apple-system, BlinkMacSystemFont, sans-serif | 999px | — | — |
| App / Portal | #E8722A | 'Inter', -apple-system, BlinkMacSystemFont, sans-serif | — | — | — |
| Scope | Recipe | Class Pattern | Notes |
|---|---|---|---|
| Website | buttonPrimary | inline-flex items-center justify-center gap-2 rounded-pill bg-brand-primary text-text-inverse shadow-sm px-4 py-2 text-body font-semibold transition-colors | Primary action button using exported brand, radius, and shadow tokens. |
| Website | surfaceCard | rounded-md bg-surface-base text-text-primary border border-border-subtle shadow-sm p-6 | Default surface/card treatment for high-visibility content areas. |
| Website | inputField | rounded-sm border border-border-subtle bg-surface-base text-text-primary px-3 py-2 text-body focus:outline-none focus:ring-2 focus:ring-focus-ring | Base text input treatment aligned to the exported radius, border, and focus tokens. |
| App / Portal | buttonPrimary | inline-flex items-center justify-center gap-2 rounded-md bg-brand-primary text-text-inverse shadow-sm px-4 py-2 text-section-title font-semibold transition-colors | Primary action button using exported brand, radius, and shadow tokens. |
| App / Portal | surfaceCard | rounded-md bg-surface-base text-text-primary border border-border-subtle shadow-sm p-6 | Default surface/card treatment for high-visibility content areas. |
| App / Portal | inputField | rounded-md border border-border-subtle bg-surface-base text-text-primary px-3 py-2 text-section-title focus:outline-none focus:ring-2 focus:ring-focus-ring | Base text input treatment aligned to the exported radius, border, and focus tokens. |