1---2name: popular-web-designs3description: 54 production-quality design systems extracted from real websites. Load a template to generate HTML/CSS that matches the visual identity of sites like Stripe, Linear, Vercel, Notion, Airbnb, and more. Each template includes colors, typography, components, layout rules, and ready-to-use CSS values.4---5
6# Popular Web Designs
7
854 real-world design systems ready for use when generating HTML/CSS. Each template captures a
9site's complete visual language: color palette, typography hierarchy, component styles, spacing
10system, shadows, responsive behavior, and practical agent prompts with exact CSS values.
11
12## How to Use
13
141. Pick a design from the catalog below
152. Load it: `skill_view(name="popular-web-designs", file_path="templates/<site>.md")`
163. Use the design tokens and component specs when generating HTML
174. Pair with the `generative-widgets` skill to serve the result via cloudflared tunnel
18
19Each template includes a **Implementation Notes** block at the top with:
20- CDN font substitute and Google Fonts `<link>` tag (ready to paste)
21- CSS font-family stacks for primary and monospace
22- Reminders to use `write_file` for HTML creation and `browser_vision` for verification
23
24## HTML Generation Pattern
25
26```html
27<!DOCTYPE html>
28<html lang="en">
29<head>
30 <meta charset="UTF-8">
31 <meta name="viewport" content="width=device-width, initial-scale=1.0">
32 <title>Page Title</title>
33 <!-- Paste the Google Fonts <link> from the template's implementation notes -->
34 <link href="https://fonts.googleapis.com/css2?family=..." rel="stylesheet">
35 <style>
36 /* Apply the template's color palette as CSS custom properties */
37 :root {
38 --color-bg: #ffffff;
39 --color-text: #171717;
40 --color-accent: #533afd;
41 /* ... more from template Section 2 */
42 }
43 /* Apply typography from template Section 3 */
44 body {
45 font-family: 'Inter', system-ui, sans-serif;
46 color: var(--color-text);
47 background: var(--color-bg);
48 }
49 /* Apply component styles from template Section 4 */
50 /* Apply layout from template Section 5 */
51 /* Apply shadows from template Section 6 */
52 </style>
53</head>
54<body>
55 <!-- Build using component specs from the template -->
56</body>
57</html>
58```
59
60Write the file with `write_file`, serve with the `generative-widgets` workflow (cloudflared tunnel),
61and verify the result with `browser_vision` to confirm visual accuracy.
62
63## Font Substitution Reference
64
65Most sites use proprietary fonts unavailable via CDN. Each template maps to a Google Fonts
66substitute that preserves the design's character. Common mappings:
67
68| Proprietary Font | CDN Substitute | Character |
69|---|---|---|
70| Geist / Geist Sans | Geist (on Google Fonts) | Geometric, compressed tracking |
71| Geist Mono | Geist Mono (on Google Fonts) | Clean monospace, ligatures |
72| sohne-var (Stripe) | Source Sans 3 | Light weight elegance |
73| Berkeley Mono | JetBrains Mono | Technical monospace |
74| Airbnb Cereal VF | DM Sans | Rounded, friendly geometric |
75| Circular (Spotify) | DM Sans | Geometric, warm |
76| figmaSans | Inter | Clean humanist |
77| Pin Sans (Pinterest) | DM Sans | Friendly, rounded |
78| NVIDIA-EMEA | Inter (or Arial system) | Industrial, clean |
79| CoinbaseDisplay/Sans | DM Sans | Geometric, trustworthy |
80| UberMove | DM Sans | Bold, tight |
81| HashiCorp Sans | Inter | Enterprise, neutral |
82| waldenburgNormal (Sanity) | Space Grotesk | Geometric, slightly condensed |
83| IBM Plex Sans/Mono | IBM Plex Sans/Mono | Available on Google Fonts |
84| Rubik (Sentry) | Rubik | Available on Google Fonts |
85
86When a template's CDN font matches the original (Inter, IBM Plex, Rubik, Geist), no
87substitution loss occurs. When a substitute is used (DM Sans for Circular, Source Sans 3
88for sohne-var), follow the template's weight, size, and letter-spacing values closely —
89those carry more visual identity than the specific font face.
90
91## Design Catalog
92
93### AI & Machine Learning
94
95| Template | Site | Style |
96|---|---|---|
97| `claude.md` | Anthropic Claude | Warm terracotta accent, clean editorial layout |
98| `cohere.md` | Cohere | Vibrant gradients, data-rich dashboard aesthetic |
99| `elevenlabs.md` | ElevenLabs | Dark cinematic UI, audio-waveform aesthetics |
100| `minimax.md` | Minimax | Bold dark interface with neon accents |
101| `mistral.ai.md` | Mistral AI | French-engineered minimalism, purple-toned |
102| `ollama.md` | Ollama | Terminal-first, monochrome simplicity |
103| `opencode.ai.md` | OpenCode AI | Developer-centric dark theme, full monospace |
104| `replicate.md` | Replicate | Clean white canvas, code-forward |
105| `runwayml.md` | RunwayML | Cinematic dark UI, media-rich layout |
106| `together.ai.md` | Together AI | Technical, blueprint-style design |
107| `voltagent.md` | VoltAgent | Void-black canvas, emerald accent, terminal-native |
108| `x.ai.md` | xAI | Stark monochrome, futuristic minimalism, full monospace |
109
110### Developer Tools & Platforms
111
112| Template | Site | Style |
113|---|---|---|
114| `cursor.md` | Cursor | Sleek dark interface, gradient accents |
115| `expo.md` | Expo | Dark theme, tight letter-spacing, code-centric |
116| `linear.app.md` | Linear | Ultra-minimal dark-mode, precise, purple accent |
117| `lovable.md` | Lovable | Playful gradients, friendly dev aesthetic |
118| `mintlify.md` | Mintlify | Clean, green-accented, reading-optimized |
119| `posthog.md` | PostHog | Playful branding, developer-friendly dark UI |
120| `raycast.md` | Raycast | Sleek dark chrome, vibrant gradient accents |
121| `resend.md` | Resend | Minimal dark theme, monospace accents |
122| `sentry.md` | Sentry | Dark dashboard, data-dense, pink-purple accent |
123| `supabase.md` | Supabase | Dark emerald theme, code-first developer tool |
124| `superhuman.md` | Superhuman | Premium dark UI, keyboard-first, purple glow |
125| `vercel.md` | Vercel | Black and white precision, Geist font system |
126| `warp.md` | Warp | Dark IDE-like interface, block-based command UI |
127| `zapier.md` | Zapier | Warm orange, friendly illustration-driven |
128
129### Infrastructure & Cloud
130
131| Template | Site | Style |
132|---|---|---|
133| `clickhouse.md` | ClickHouse | Yellow-accented, technical documentation style |
134| `composio.md` | Composio | Modern dark with colorful integration icons |
135| `hashicorp.md` | HashiCorp | Enterprise-clean, black and white |
136| `mongodb.md` | MongoDB | Green leaf branding, developer documentation focus |
137| `sanity.md` | Sanity | Red accent, content-first editorial layout |
138| `stripe.md` | Stripe | Signature purple gradients, weight-300 elegance |
139
140### Design & Productivity
141
142| Template | Site | Style |
143|---|---|---|
144| `airtable.md` | Airtable | Colorful, friendly, structured data aesthetic |
145| `cal.md` | Cal.com | Clean neutral UI, developer-oriented simplicity |
146| `clay.md` | Clay | Organic shapes, soft gradients, art-directed layout |
147| `figma.md` | Figma | Vibrant multi-color, playful yet professional |
148| `framer.md` | Framer | Bold black and blue, motion-first, design-forward |
149| `intercom.md` | Intercom | Friendly blue palette, conversational UI patterns |
150| `miro.md` | Miro | Bright yellow accent, infinite canvas aesthetic |
151| `notion.md` | Notion | Warm minimalism, serif headings, soft surfaces |
152| `pinterest.md` | Pinterest | Red accent, masonry grid, image-first layout |
153| `webflow.md` | Webflow | Blue-accented, polished marketing site aesthetic |
154
155### Fintech & Crypto
156
157| Template | Site | Style |
158|---|---|---|
159| `coinbase.md` | Coinbase | Clean blue identity, trust-focused, institutional feel |
160| `kraken.md` | Kraken | Purple-accented dark UI, data-dense dashboards |
161| `revolut.md` | Revolut | Sleek dark interface, gradient cards, fintech precision |
162| `wise.md` | Wise | Bright green accent, friendly and clear |
163
164### Enterprise & Consumer
165
166| Template | Site | Style |
167|---|---|---|
168| `airbnb.md` | Airbnb | Warm coral accent, photography-driven, rounded UI |
169| `apple.md` | Apple | Premium white space, SF Pro, cinematic imagery |
170| `bmw.md` | BMW | Dark premium surfaces, precise engineering aesthetic |
171| `ibm.md` | IBM | Carbon design system, structured blue palette |
172| `nvidia.md` | NVIDIA | Green-black energy, technical power aesthetic |
173| `spacex.md` | SpaceX | Stark black and white, full-bleed imagery, futuristic |
174| `spotify.md` | Spotify | Vibrant green on dark, bold type, album-art-driven |
175| `uber.md` | Uber | Bold black and white, tight type, urban energy |
176
177## Choosing a Design
178
179Match the design to the content:
180
181- **Developer tools / dashboards:** Linear, Vercel, Supabase, Raycast, Sentry
182- **Documentation / content sites:** Mintlify, Notion, Sanity, MongoDB
183- **Marketing / landing pages:** Stripe, Framer, Apple, SpaceX
184- **Dark mode UIs:** Linear, Cursor, ElevenLabs, Warp, Superhuman
185- **Light / clean UIs:** Vercel, Stripe, Notion, Cal.com, Replicate
186- **Playful / friendly:** PostHog, Figma, Lovable, Zapier, Miro
187- **Premium / luxury:** Apple, BMW, Stripe, Superhuman, Revolut
188- **Data-dense / dashboards:** Sentry, Kraken, Cohere, ClickHouse
189- **Monospace / terminal aesthetic:** Ollama, OpenCode, x.ai, VoltAgent