ui-ux-consultant-cli 1.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/assets/ui-ux-consultant/SKILL.md +844 -0
  2. package/assets/ui-ux-consultant/references/accessibility.md +175 -0
  3. package/assets/ui-ux-consultant/references/alt-libraries.md +90 -0
  4. package/assets/ui-ux-consultant/references/animations.md +448 -0
  5. package/assets/ui-ux-consultant/references/catalog/colors.md +91 -0
  6. package/assets/ui-ux-consultant/references/catalog/fonts.md +363 -0
  7. package/assets/ui-ux-consultant/references/catalog/products.md +340 -0
  8. package/assets/ui-ux-consultant/references/catalog/styles.md +165 -0
  9. package/assets/ui-ux-consultant/references/components.md +1116 -0
  10. package/assets/ui-ux-consultant/references/patterns.md +600 -0
  11. package/assets/ui-ux-consultant/references/performance.md +198 -0
  12. package/assets/ui-ux-consultant/references/stacks/astro.md +382 -0
  13. package/assets/ui-ux-consultant/references/stacks/flutter.md +308 -0
  14. package/assets/ui-ux-consultant/references/stacks/html-tailwind.md +415 -0
  15. package/assets/ui-ux-consultant/references/stacks/jetpack-compose.md +333 -0
  16. package/assets/ui-ux-consultant/references/stacks/laravel.md +521 -0
  17. package/assets/ui-ux-consultant/references/stacks/nextjs.md +275 -0
  18. package/assets/ui-ux-consultant/references/stacks/nuxt-ui.md +384 -0
  19. package/assets/ui-ux-consultant/references/stacks/nuxtjs.md +264 -0
  20. package/assets/ui-ux-consultant/references/stacks/react-native.md +346 -0
  21. package/assets/ui-ux-consultant/references/stacks/react.md +268 -0
  22. package/assets/ui-ux-consultant/references/stacks/shadcn.md +485 -0
  23. package/assets/ui-ux-consultant/references/stacks/svelte.md +429 -0
  24. package/assets/ui-ux-consultant/references/stacks/swiftui.md +336 -0
  25. package/assets/ui-ux-consultant/references/stacks/threejs.md +366 -0
  26. package/assets/ui-ux-consultant/references/stacks/vue.md +272 -0
  27. package/assets/ui-ux-consultant/references/theming.md +701 -0
  28. package/dist/index.d.ts +2 -0
  29. package/dist/index.js +130 -0
  30. package/package.json +51 -0
@@ -0,0 +1,91 @@
1
+ # Color Palettes Catalog
2
+
3
+ ## When to read this
4
+ Use when the user needs a color palette recommendation, brand colors, or theme colors for a UI.
5
+
6
+ ---
7
+
8
+ ## Professional / Corporate
9
+
10
+ | Palette | Primary | Secondary | Accent | Best for |
11
+ |---|---|---|---|---|
12
+ | **Classic Navy** | `#1B2A4A` | `#2E4A7A` | `#4A90D9` | Finance, law, insurance, enterprise SaaS |
13
+ | **Executive Gray** | `#2C3E50` | `#566573` | `#1ABC9C` | Consulting, analytics dashboards, B2B tools |
14
+ | **Trust Blue** | `#0D47A1` | `#1565C0` | `#FF6F00` | Banking, healthcare admin, government portals |
15
+ | **Slate Pro** | `#37474F` | `#546E7A` | `#00ACC1` | Tech startups, productivity apps, developer tools |
16
+ | **Corporate Indigo** | `#283593` | `#3949AB` | `#F57C00` | HR platforms, enterprise portals, CRM |
17
+ | **Midnight Steel** | `#1C1C2E` | `#2A2A45` | `#5C6BC0` | Cybersecurity, data platforms, dark-mode SaaS |
18
+ | **Deep Teal** | `#004D40` | `#00695C` | `#FFAB40` | Sustainability reports, fintech, impact dashboards |
19
+
20
+ ---
21
+
22
+ ## Creative / Vibrant
23
+
24
+ | Palette | Primary | Secondary | Accent | Best for |
25
+ |---|---|---|---|---|
26
+ | **Electric Violet** | `#6200EA` | `#7C4DFF` | `#00E5FF` | Gaming, entertainment, creative tools |
27
+ | **Coral Pop** | `#FF5252` | `#FF8A80` | `#FFD740` | Food delivery, lifestyle apps, social platforms |
28
+ | **Tropical Punch** | `#FF6D00` | `#FF9100` | `#00E676` | Sports, fitness, youth-focused brands |
29
+ | **Neon Gradient** | `#F72585` | `#7209B7` | `#4CC9F0` | Music, nightlife, Gen-Z products |
30
+ | **Sunset Duo** | `#FF416C` | `#FF4B2B` | `#FFC837` | Travel, adventure, photography apps |
31
+ | **Vivid Teal** | `#00BFA5` | `#1DE9B6` | `#FF6E40` | Health tech, wellness, meditation apps |
32
+ | **Playful Rainbow** | `#FF6B6B` | `#4ECDC4` | `#FFE66D` | EdTech for kids, onboarding, fun dashboards |
33
+
34
+ ---
35
+
36
+ ## Dark / Moody
37
+
38
+ | Palette | Primary | Secondary | Accent | Best for |
39
+ |---|---|---|---|---|
40
+ | **Obsidian** | `#0A0A0A` | `#1A1A2E` | `#E94560` | Gaming UI, dark SaaS, hacker aesthetic |
41
+ | **Charcoal Noir** | `#121212` | `#1E1E1E` | `#BB86FC` | Material dark apps, music players, code editors |
42
+ | **Deep Space** | `#0B0C10` | `#1F2833` | `#66FCF1` | Sci-fi, data visualization, dev dashboards |
43
+ | **Gothic Plum** | `#1A0025` | `#2D0036` | `#CE93D8` | Fashion, luxury, editorial design |
44
+ | **Midnight Ocean** | `#001529` | `#002766` | `#177DDC` | Dark-mode enterprise, analytics platforms |
45
+ | **Volcanic Ash** | `#1B1B1B` | `#2E2E2E` | `#FF5722` | Creative agencies, portfolio sites, bold brands |
46
+
47
+ ---
48
+
49
+ ## Pastel / Soft
50
+
51
+ | Palette | Primary | Secondary | Accent | Best for |
52
+ |---|---|---|---|---|
53
+ | **Cotton Candy** | `#FFB3C6` | `#FFC8DD` | `#A2D2FF` | Beauty, wellness, baby products |
54
+ | **Morning Mist** | `#B5EAD7` | `#C7CEEA` | `#FFDAC1` | Mental health apps, journaling, calm UIs |
55
+ | **Lavender Dream** | `#D8B4FE` | `#E9D5FF` | `#FDE68A` | Spa, meditation, soft onboarding flows |
56
+ | **Peach Bloom** | `#FFCBA4` | `#FFE0CC` | `#A8DADC` | Food blogs, recipes, lifestyle brands |
57
+ | **Sky Pastel** | `#BAE1FF` | `#D4F1F9` | `#FFDFBA` | Children's apps, light dashboards, education |
58
+ | **Blush & Mint** | `#FFC2D1` | `#B5EAD7` | `#FDFFB6` | Wedding apps, event planning, soft e-commerce |
59
+
60
+ ---
61
+
62
+ ## Earthy / Natural
63
+
64
+ | Palette | Primary | Secondary | Accent | Best for |
65
+ |---|---|---|---|---|
66
+ | **Forest Grove** | `#2D6A4F` | `#40916C` | `#D9BF77` | Eco brands, sustainability, outdoor gear |
67
+ | **Warm Terracotta** | `#8B4513` | `#C1440E` | `#F4A460` | Artisan goods, food brands, ceramics |
68
+ | **Desert Sand** | `#C19A6B` | `#D4A76A` | `#6B4226` | Travel, wellness retreats, bohemian brands |
69
+ | **Olive & Stone** | `#6B7257` | `#8B8D6A` | `#D4C5A9` | Architecture, interior design, nature brands |
70
+ | **Earth & Sky** | `#5C4033` | `#795548` | `#4CAF50` | Farming, organic products, land management |
71
+ | **Rust & Sage** | `#B5451B` | `#7D9B76` | `#F2D06B` | Handmade goods, Etsy-style shops, craft brands |
72
+
73
+ ---
74
+
75
+ ## Monochrome
76
+
77
+ | Palette | Primary | Secondary | Accent | Best for |
78
+ |---|---|---|---|---|
79
+ | **Pure Black & White** | `#000000` | `#FFFFFF` | `#F5F5F5` | Minimalist portfolios, print-first design |
80
+ | **Warm Gray Scale** | `#212121` | `#757575` | `#BDBDBD` | Editorial, content-heavy apps, news |
81
+ | **Cool Slate Mono** | `#1E293B` | `#64748B` | `#CBD5E1` | Developer tools, API docs, admin panels |
82
+ | **Ivory & Ink** | `#F8F4E3` | `#3D2B1F` | `#9C8B6E` | Publishing, reading apps, newsletters |
83
+ | **Silver Chrome** | `#E0E0E0` | `#9E9E9E` | `#424242` | Industrial, hardware, automotive UIs |
84
+
85
+ ---
86
+
87
+ ## Notes
88
+ - Accent color is always used sparingly (CTAs, highlights, badges).
89
+ - For dark mode, swap primary/secondary lightness but keep accent hue.
90
+ - Accessibility: always verify contrast ratios — aim for WCAG AA (4.5:1 text, 3:1 UI).
91
+ - Tools: [Coolors](https://coolors.co), [Realtime Colors](https://realtimecolors.com), [Oklch Picker](https://oklch.com).
@@ -0,0 +1,363 @@
1
+ # Font Pairings Catalog
2
+
3
+ ## When to read this
4
+ Use when the user needs typography recommendations, font pairings, or heading/body font combinations.
5
+
6
+ ---
7
+
8
+ ## Corporate / Professional
9
+
10
+ ### 1. Inter + Inter
11
+ - **Heading:** Inter (700–900)
12
+ - **Body:** Inter (400)
13
+ - **Personality:** clean, neutral, systematic
14
+ - **Best for:** SaaS dashboards, admin panels, enterprise tools
15
+ - **Google Fonts:**
16
+ ```html
17
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap" rel="stylesheet">
18
+ ```
19
+
20
+ ### 2. Plus Jakarta Sans + Inter
21
+ - **Heading:** Plus Jakarta Sans (700–800)
22
+ - **Body:** Inter (400)
23
+ - **Personality:** modern professional, friendly authority
24
+ - **Best for:** B2B SaaS, startup landing pages, product sites
25
+ - **Google Fonts:**
26
+ ```html
27
+ <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&family=Inter:wght@400;500&display=swap" rel="stylesheet">
28
+ ```
29
+
30
+ ### 3. Sora + DM Sans
31
+ - **Heading:** Sora (700–800)
32
+ - **Body:** DM Sans (400)
33
+ - **Personality:** tech-forward, contemporary corporate
34
+ - **Best for:** fintech, developer tools, productivity apps
35
+ - **Google Fonts:**
36
+ ```html
37
+ <link href="https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=DM+Sans:wght@400;500&display=swap" rel="stylesheet">
38
+ ```
39
+
40
+ ### 4. Space Grotesk + Space Grotesk
41
+ - **Heading:** Space Grotesk (700)
42
+ - **Body:** Space Grotesk (400)
43
+ - **Personality:** confident, slightly quirky professional
44
+ - **Best for:** design tools, creative agencies with corporate clients
45
+ - **Google Fonts:**
46
+ ```html
47
+ <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap" rel="stylesheet">
48
+ ```
49
+
50
+ ### 5. IBM Plex Sans + IBM Plex Sans
51
+ - **Heading:** IBM Plex Sans (600–700)
52
+ - **Body:** IBM Plex Sans (400)
53
+ - **Personality:** utilitarian, trustworthy, structured
54
+ - **Best for:** enterprise software, data-heavy dashboards, government/public sector
55
+ - **Google Fonts:**
56
+ ```html
57
+ <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
58
+ ```
59
+
60
+ ### 6. Figtree + Figtree
61
+ - **Heading:** Figtree (700–800)
62
+ - **Body:** Figtree (400–500)
63
+ - **Personality:** warm professional, approachable authority
64
+ - **Best for:** HR platforms, healthcare SaaS, education tech
65
+ - **Google Fonts:**
66
+ ```html
67
+ <link href="https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;700;800&display=swap" rel="stylesheet">
68
+ ```
69
+
70
+ ---
71
+
72
+ ## Editorial / Luxury
73
+
74
+ ### 7. Playfair Display + Lato
75
+ - **Heading:** Playfair Display (700–900)
76
+ - **Body:** Lato (400)
77
+ - **Personality:** classic editorial luxury, timeless elegance
78
+ - **Best for:** fashion brands, lifestyle magazines, premium e-commerce
79
+ - **Google Fonts:**
80
+ ```html
81
+ <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@400;300&display=swap" rel="stylesheet">
82
+ ```
83
+
84
+ ### 8. Cormorant Garamond + Jost
85
+ - **Heading:** Cormorant Garamond (600–700)
86
+ - **Body:** Jost (300–400)
87
+ - **Personality:** refined luxury, high fashion, understated prestige
88
+ - **Best for:** luxury goods, jewellery, bespoke services, boutique hotels
89
+ - **Google Fonts:**
90
+ ```html
91
+ <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Jost:wght@300;400&display=swap" rel="stylesheet">
92
+ ```
93
+
94
+ ### 9. Bodoni Moda + Source Sans 3
95
+ - **Heading:** Bodoni Moda (700–800)
96
+ - **Body:** Source Sans 3 (400)
97
+ - **Personality:** high-contrast editorial drama, couture energy
98
+ - **Best for:** fashion editorials, beauty brands, art galleries
99
+ - **Google Fonts:**
100
+ ```html
101
+ <link href="https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@700;800&family=Source+Sans+3:wght@400;300&display=swap" rel="stylesheet">
102
+ ```
103
+
104
+ ### 10. Libre Baskerville + Libre Franklin
105
+ - **Heading:** Libre Baskerville (700)
106
+ - **Body:** Libre Franklin (400)
107
+ - **Personality:** editorial authority, newspaper heritage
108
+ - **Best for:** journalism, publishing, long-form content sites
109
+ - **Google Fonts:**
110
+ ```html
111
+ <link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&family=Libre+Franklin:wght@400;500&display=swap" rel="stylesheet">
112
+ ```
113
+
114
+ ### 11. DM Serif Display + DM Sans
115
+ - **Heading:** DM Serif Display (400)
116
+ - **Body:** DM Sans (400)
117
+ - **Personality:** contemporary editorial, elegant but accessible
118
+ - **Best for:** media brands, newsletters, premium blogs
119
+ - **Google Fonts:**
120
+ ```html
121
+ <link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@400;500&display=swap" rel="stylesheet">
122
+ ```
123
+
124
+ ### 12. Spectral + Karla
125
+ - **Heading:** Spectral (700–800)
126
+ - **Body:** Karla (400)
127
+ - **Personality:** literary luxury, rich and readable
128
+ - **Best for:** book publishing, editorial platforms, premium subscriptions
129
+ - **Google Fonts:**
130
+ ```html
131
+ <link href="https://fonts.googleapis.com/css2?family=Spectral:wght@700;800&family=Karla:wght@400;500&display=swap" rel="stylesheet">
132
+ ```
133
+
134
+ ---
135
+
136
+ ## Minimal / Modernist
137
+
138
+ ### 13. Outfit + Outfit
139
+ - **Heading:** Outfit (700–800)
140
+ - **Body:** Outfit (400)
141
+ - **Personality:** geometric minimalism, clean modernity
142
+ - **Best for:** portfolio sites, design studios, minimal SaaS
143
+ - **Google Fonts:**
144
+ ```html
145
+ <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&display=swap" rel="stylesheet">
146
+ ```
147
+
148
+ ### 14. Manrope + Manrope
149
+ - **Heading:** Manrope (700–800)
150
+ - **Body:** Manrope (400–500)
151
+ - **Personality:** precise, optical-calibrated minimal
152
+ - **Best for:** mobile apps, data products, clean web apps
153
+ - **Google Fonts:**
154
+ ```html
155
+ <link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap" rel="stylesheet">
156
+ ```
157
+
158
+ ### 15. Urbanist + Urbanist
159
+ - **Heading:** Urbanist (700–900)
160
+ - **Body:** Urbanist (400)
161
+ - **Personality:** geometric, airy, ultra-modern
162
+ - **Best for:** architecture firms, real estate, minimal e-commerce
163
+ - **Google Fonts:**
164
+ ```html
165
+ <link href="https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;700;900&display=swap" rel="stylesheet">
166
+ ```
167
+
168
+ ### 16. Raleway + Nunito Sans
169
+ - **Heading:** Raleway (700–800)
170
+ - **Body:** Nunito Sans (400)
171
+ - **Personality:** elegant minimal, soft geometric
172
+ - **Best for:** wellness brands, creative portfolios, lifestyle apps
173
+ - **Google Fonts:**
174
+ ```html
175
+ <link href="https://fonts.googleapis.com/css2?family=Raleway:wght@700;800&family=Nunito+Sans:wght@400;600&display=swap" rel="stylesheet">
176
+ ```
177
+
178
+ ### 17. Josefin Sans + Josefin Slab
179
+ - **Heading:** Josefin Sans (700)
180
+ - **Body:** Josefin Slab (400)
181
+ - **Personality:** 1920s geometric modernism, art deco echo
182
+ - **Best for:** boutique retail, event branding, retro-modern products
183
+ - **Google Fonts:**
184
+ ```html
185
+ <link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Josefin+Slab:wght@400&display=swap" rel="stylesheet">
186
+ ```
187
+
188
+ ---
189
+
190
+ ## Playful / Friendly
191
+
192
+ ### 18. Nunito + Nunito
193
+ - **Heading:** Nunito (800–900)
194
+ - **Body:** Nunito (400–600)
195
+ - **Personality:** rounded, bubbly, approachable
196
+ - **Best for:** kids apps, consumer apps, food delivery, games
197
+ - **Google Fonts:**
198
+ ```html
199
+ <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800;900&display=swap" rel="stylesheet">
200
+ ```
201
+
202
+ ### 19. Quicksand + Open Sans
203
+ - **Heading:** Quicksand (700)
204
+ - **Body:** Open Sans (400)
205
+ - **Personality:** light, friendly, optimistic
206
+ - **Best for:** health & wellness, e-learning, consumer productivity
207
+ - **Google Fonts:**
208
+ ```html
209
+ <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@600;700&family=Open+Sans:wght@400;500&display=swap" rel="stylesheet">
210
+ ```
211
+
212
+ ### 20. Baloo 2 + Hind
213
+ - **Heading:** Baloo 2 (700–800)
214
+ - **Body:** Hind (400)
215
+ - **Personality:** expressive, energetic, casual fun
216
+ - **Best for:** gaming, social apps, entertainment platforms
217
+ - **Google Fonts:**
218
+ ```html
219
+ <link href="https://fonts.googleapis.com/css2?family=Baloo+2:wght@700;800&family=Hind:wght@400;500&display=swap" rel="stylesheet">
220
+ ```
221
+
222
+ ### 21. Poppins + Poppins
223
+ - **Heading:** Poppins (700–800)
224
+ - **Body:** Poppins (400)
225
+ - **Personality:** cheerful, geometric, universally pleasing
226
+ - **Best for:** startups, mobile apps, e-commerce, social platforms
227
+ - **Google Fonts:**
228
+ ```html
229
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap" rel="stylesheet">
230
+ ```
231
+
232
+ ### 22. Fredoka + Nunito
233
+ - **Heading:** Fredoka (600–700)
234
+ - **Body:** Nunito (400)
235
+ - **Personality:** playful, rounded, youthful energy
236
+ - **Best for:** children's education, toy brands, casual games
237
+ - **Google Fonts:**
238
+ ```html
239
+ <link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@600;700&family=Nunito:wght@400;600&display=swap" rel="stylesheet">
240
+ ```
241
+
242
+ ---
243
+
244
+ ## Technical / Developer
245
+
246
+ ### 23. JetBrains Mono + Inter
247
+ - **Heading:** JetBrains Mono (700)
248
+ - **Body:** Inter (400)
249
+ - **Personality:** developer-native, precise, code-forward
250
+ - **Best for:** dev tools, documentation sites, API products
251
+ - **Google Fonts:**
252
+ ```html
253
+ <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700&family=Inter:wght@400;500&display=swap" rel="stylesheet">
254
+ ```
255
+
256
+ ### 24. Fira Code + Fira Sans
257
+ - **Heading:** Fira Sans (700–800)
258
+ - **Body:** Fira Sans (400) / Fira Code for code blocks
259
+ - **Personality:** Mozilla open-source heritage, technical clarity
260
+ - **Best for:** open source projects, developer blogs, CLI documentation
261
+ - **Google Fonts:**
262
+ ```html
263
+ <link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700;800&family=Fira+Code:wght@400&display=swap" rel="stylesheet">
264
+ ```
265
+
266
+ ### 25. Space Mono + Space Grotesk
267
+ - **Heading:** Space Grotesk (700)
268
+ - **Body:** Space Grotesk (400) / Space Mono for code
269
+ - **Personality:** space-age tech, retro-futurism
270
+ - **Best for:** crypto, web3, cybersecurity, dev-oriented startups
271
+ - **Google Fonts:**
272
+ ```html
273
+ <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=Space+Mono:wght@400&display=swap" rel="stylesheet">
274
+ ```
275
+
276
+ ---
277
+
278
+ ## Creative / Agency
279
+
280
+ ### 26. Clash Display + Cabinet Grotesk
281
+ - **Heading:** Clash Display (700)
282
+ - **Body:** Cabinet Grotesk (400)
283
+ - **Personality:** bold creative, design-forward, agency prestige
284
+ - **Best for:** creative agencies, portfolio studios, award sites
285
+ - **Note:** Available via FontShare (free) — not Google Fonts
286
+ ```html
287
+ <link href="https://api.fontshare.com/v2/css?f[]=clash-display@700&f[]=cabinet-grotesk@400,500&display=swap" rel="stylesheet">
288
+ ```
289
+
290
+ ### 27. Bebas Neue + Lato
291
+ - **Heading:** Bebas Neue (400 — display caps)
292
+ - **Body:** Lato (400)
293
+ - **Personality:** bold, athletic, high impact
294
+ - **Best for:** sports brands, fitness apps, streetwear, event promotion
295
+ - **Google Fonts:**
296
+ ```html
297
+ <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:wght@400;300&display=swap" rel="stylesheet">
298
+ ```
299
+
300
+ ### 28. Anton + Roboto
301
+ - **Heading:** Anton (400 — display caps)
302
+ - **Body:** Roboto (400)
303
+ - **Personality:** punchy, magazine-editorial, attention-grabbing
304
+ - **Best for:** news sites, event marketing, high-energy consumer brands
305
+ - **Google Fonts:**
306
+ ```html
307
+ <link href="https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;300&display=swap" rel="stylesheet">
308
+ ```
309
+
310
+ ---
311
+
312
+ ## System / No-Download Fallbacks
313
+
314
+ ### 29. System UI Stack (Corporate Neutral)
315
+ - **Heading:** `-apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif` (700)
316
+ - **Body:** same stack (400)
317
+ - **Personality:** invisible, native-feel, zero-latency
318
+ - **Best for:** performance-critical apps, internal tools, native-adjacent web apps
319
+ - **CSS:**
320
+ ```css
321
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
322
+ ```
323
+
324
+ ### 30. Georgia + System UI (Readable Editorial)
325
+ - **Heading:** `Georgia, "Times New Roman", serif` (700)
326
+ - **Body:** `-apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif` (400)
327
+ - **Personality:** editorial authority with modern body legibility
328
+ - **Best for:** long-form reading, news, documentation with personality
329
+ - **CSS:**
330
+ ```css
331
+ h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
332
+ body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
333
+ ```
334
+
335
+ ### 31. Menlo/Consolas + System UI (Developer)
336
+ - **Heading:** System UI sans-serif (700)
337
+ - **Body:** System UI sans-serif (400) / `Menlo, Consolas, "Courier New", monospace` for code
338
+ - **Personality:** zero-dependency dev-native
339
+ - **Best for:** CLI docs, README renderers, GitHub-style pages
340
+ - **CSS:**
341
+ ```css
342
+ code, pre { font-family: Menlo, Consolas, "Courier New", monospace; }
343
+ ```
344
+
345
+ ---
346
+
347
+ ## Quick-Reference Matrix
348
+
349
+ | Pairing | Mood | Industry |
350
+ |---|---|---|
351
+ | Plus Jakarta Sans + Inter | Modern professional | B2B SaaS |
352
+ | Cormorant Garamond + Jost | Refined luxury | Jewellery, hotels |
353
+ | Playfair Display + Lato | Classic editorial | Fashion, lifestyle |
354
+ | Poppins + Poppins | Cheerful geometric | Consumer apps |
355
+ | Space Grotesk + Space Grotesk | Quirky confident | Design tools |
356
+ | Nunito + Nunito | Bubbly friendly | Kids, games |
357
+ | Urbanist + Urbanist | Airy ultra-modern | Architecture, real estate |
358
+ | IBM Plex Sans | Utilitarian trust | Enterprise, gov |
359
+ | JetBrains Mono + Inter | Developer-native | Dev tools, docs |
360
+ | Bebas Neue + Lato | Athletic bold | Sports, fitness |
361
+ | Clash Display + Cabinet Grotesk | Agency prestige | Creative studios |
362
+ | DM Serif Display + DM Sans | Contemporary editorial | Media, newsletters |
363
+ | System UI stack | Invisible native | Internal tools |