@tinkcarlos/skillora 0.2.0
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.
- package/.claude/skills/.temp-skill-index.md +245 -0
- package/.claude/skills/SKILL.md +264 -0
- package/.claude/skills/api-scaffolding/SKILL.md +431 -0
- package/.claude/skills/api-scaffolding/agents/backend-architect.md +282 -0
- package/.claude/skills/api-scaffolding/agents/django-pro.md +144 -0
- package/.claude/skills/api-scaffolding/agents/fastapi-pro.md +156 -0
- package/.claude/skills/api-scaffolding/agents/graphql-architect.md +146 -0
- package/.claude/skills/api-scaffolding/skills/fastapi-templates/SKILL.md +171 -0
- package/.claude/skills/api-testing-observability/SKILL.md +583 -0
- package/.claude/skills/api-testing-observability/agents/api-documenter.md +146 -0
- package/.claude/skills/api-testing-observability/commands/api-mock.md +1320 -0
- package/.claude/skills/brainstorming/SKILL.md +283 -0
- package/.claude/skills/bug-fixing/SKILL.md +382 -0
- package/.claude/skills/bug-fixing/references/backend-guide.md +132 -0
- package/.claude/skills/bug-fixing/references/bug-guide.md +354 -0
- package/.claude/skills/bug-fixing/references/bug-record-template.md +134 -0
- package/.claude/skills/bug-fixing/references/bug-records.md +88 -0
- package/.claude/skills/bug-fixing/references/code-review-gate.md +81 -0
- package/.claude/skills/bug-fixing/references/common-bugs.md +140 -0
- package/.claude/skills/bug-fixing/references/complete-workflow.md +361 -0
- package/.claude/skills/bug-fixing/references/config-driven-fixes.md +136 -0
- package/.claude/skills/bug-fixing/references/context-isolation-protocol.md +268 -0
- package/.claude/skills/bug-fixing/references/cross-surface-regression.md +120 -0
- package/.claude/skills/bug-fixing/references/database-investigation.md +129 -0
- package/.claude/skills/bug-fixing/references/dependency-and-integrity-protocol.md +369 -0
- package/.claude/skills/bug-fixing/references/fix-completeness-checklist.md +239 -0
- package/.claude/skills/bug-fixing/references/frontend-guide.md +219 -0
- package/.claude/skills/bug-fixing/references/fullstack-joint-guide.md +123 -0
- package/.claude/skills/bug-fixing/references/functional-breakage.md +117 -0
- package/.claude/skills/bug-fixing/references/ide-lint-errors-guide.md +176 -0
- package/.claude/skills/bug-fixing/references/impact-analysis.md +511 -0
- package/.claude/skills/bug-fixing/references/investigation-checklist.md +263 -0
- package/.claude/skills/bug-fixing/references/knowledge-extraction-guide.md +531 -0
- package/.claude/skills/bug-fixing/references/knowledge-workflow.md +212 -0
- package/.claude/skills/bug-fixing/references/post-edit-quality-gate.md +30 -0
- package/.claude/skills/bug-fixing/references/python-env-and-testing.md +126 -0
- package/.claude/skills/bug-fixing/references/rca-guide.md +428 -0
- package/.claude/skills/bug-fixing/references/similar-bug-patterns.md +113 -0
- package/.claude/skills/bug-fixing/references/skill-delegation-guide.md +350 -0
- package/.claude/skills/bug-fixing/references/skill-orchestration.md +155 -0
- package/.claude/skills/bug-fixing/references/testing-strategy.md +350 -0
- package/.claude/skills/bug-fixing/references/tooling-build-scripts.md +162 -0
- package/.claude/skills/bug-fixing/references/user-input-validation.md +77 -0
- package/.claude/skills/bug-fixing/references/ux-patterns.md +158 -0
- package/.claude/skills/bug-fixing/references/windows-terminal-hygiene.md +106 -0
- package/.claude/skills/bug-fixing/references/zero-regression-matrix.md +239 -0
- package/.claude/skills/bug-fixing/references/zero-risk-protocol.md +102 -0
- package/.claude/skills/bug-fixing/scripts/format_code.py +611 -0
- package/.claude/skills/bug-fixing/scripts/generate_report_template.py +74 -0
- package/.claude/skills/bug-fixing/scripts/lint_check.py +816 -0
- package/.claude/skills/bug-fixing/scripts/requirements.txt +36 -0
- package/.claude/skills/cicd-pipeline/SKILL.md +300 -0
- package/.claude/skills/code-review/SKILL.md +535 -0
- package/.claude/skills/code-review/references/anti-pattern-scan.md +102 -0
- package/.claude/skills/code-review/references/automated-analysis.md +456 -0
- package/.claude/skills/code-review/references/backend-common-issues.md +589 -0
- package/.claude/skills/code-review/references/backend-expert-guide.md +415 -0
- package/.claude/skills/code-review/references/backend-review.md +868 -0
- package/.claude/skills/code-review/references/batch-processing-strategy.md +198 -0
- package/.claude/skills/code-review/references/call-chain-analysis-protocol.md +166 -0
- package/.claude/skills/code-review/references/common-patterns.md +321 -0
- package/.claude/skills/code-review/references/configuration-review.md +425 -0
- package/.claude/skills/code-review/references/control-flow-completeness.md +114 -0
- package/.claude/skills/code-review/references/database-review.md +298 -0
- package/.claude/skills/code-review/references/dependency-and-integrity-protocol.md +313 -0
- package/.claude/skills/code-review/references/external-standards.md +51 -0
- package/.claude/skills/code-review/references/feature-review.md +329 -0
- package/.claude/skills/code-review/references/file-review-template.md +326 -0
- package/.claude/skills/code-review/references/frontend-advanced.md +654 -0
- package/.claude/skills/code-review/references/frontend-common-issues.md +482 -0
- package/.claude/skills/code-review/references/frontend-expert-guide.md +342 -0
- package/.claude/skills/code-review/references/frontend-review.md +783 -0
- package/.claude/skills/code-review/references/fullstack-consistency.md +418 -0
- package/.claude/skills/code-review/references/fullstack-review.md +477 -0
- package/.claude/skills/code-review/references/functional-completeness.md +386 -0
- package/.claude/skills/code-review/references/hidden-bugs-detection.md +473 -0
- package/.claude/skills/code-review/references/ide-lint-errors-guide.md +173 -0
- package/.claude/skills/code-review/references/infrastructure-review.md +453 -0
- package/.claude/skills/code-review/references/iteration-review.md +264 -0
- package/.claude/skills/code-review/references/job-review.md +335 -0
- package/.claude/skills/code-review/references/layered-checklist-protocol.md +157 -0
- package/.claude/skills/code-review/references/logic-completeness.md +535 -0
- package/.claude/skills/code-review/references/mandatory-checklist.md +288 -0
- package/.claude/skills/code-review/references/multi-language-guide.md +800 -0
- package/.claude/skills/code-review/references/new-project-review.md +226 -0
- package/.claude/skills/code-review/references/non-code-files-review.md +451 -0
- package/.claude/skills/code-review/references/overlooked-issues.md +657 -0
- package/.claude/skills/code-review/references/platform-specific-review.md +195 -0
- package/.claude/skills/code-review/references/precision-analysis-protocol.md +260 -0
- package/.claude/skills/code-review/references/python-patterns.md +494 -0
- package/.claude/skills/code-review/references/rca-techniques.md +362 -0
- package/.claude/skills/code-review/references/report-template.md +430 -0
- package/.claude/skills/code-review/references/resource-limits-and-degradation.md +137 -0
- package/.claude/skills/code-review/references/review-dimensions.md +311 -0
- package/.claude/skills/code-review/references/review-guide.md +202 -0
- package/.claude/skills/code-review/references/review-knowledge-workflow.md +257 -0
- package/.claude/skills/code-review/references/review-progress-tracker-protocol.md +172 -0
- package/.claude/skills/code-review/references/review-record-template.md +195 -0
- package/.claude/skills/code-review/references/skill-orchestration.md +143 -0
- package/.claude/skills/code-review/references/ui-ux-review.md +470 -0
- package/.claude/skills/containerization/SKILL.md +313 -0
- package/.claude/skills/database-migrations/agents/database-admin.md +142 -0
- package/.claude/skills/database-migrations/agents/database-optimizer.md +144 -0
- package/.claude/skills/database-migrations/commands/migration-observability.md +408 -0
- package/.claude/skills/database-migrations/commands/sql-migrations.md +492 -0
- package/.claude/skills/finishing-a-development-branch/SKILL.md +319 -0
- package/.claude/skills/frontend-design/LICENSE.txt +177 -0
- package/.claude/skills/frontend-design/SKILL.md +587 -0
- package/.claude/skills/frontend-design/references/color-consistency.md +487 -0
- package/.claude/skills/frontend-design/references/color-palettes-full.md +657 -0
- package/.claude/skills/frontend-design/references/design-system-generator.md +285 -0
- package/.claude/skills/frontend-design/references/font-pairings-full.md +705 -0
- package/.claude/skills/frontend-design/references/industry-anti-patterns.md +281 -0
- package/.claude/skills/frontend-design/references/layout-anti-patterns.md +582 -0
- package/.claude/skills/frontend-design/references/motion-patterns.md +659 -0
- package/.claude/skills/frontend-design/references/pre-delivery-checklist.md +153 -0
- package/.claude/skills/frontend-design/references/responsive-design.md +555 -0
- package/.claude/skills/frontend-design/references/style-modification-rules.md +335 -0
- package/.claude/skills/frontend-design/references/ui-styles-full.md +383 -0
- package/.claude/skills/frontend-design/references/ui-styles-rating.md +191 -0
- package/.claude/skills/frontend-design/references/ux-guidelines.md +640 -0
- package/.claude/skills/fullstack-developer/SKILL.md +512 -0
- package/.claude/skills/fullstack-developer/references/api-contract-guide.md +312 -0
- package/.claude/skills/fullstack-developer/references/api-response-patterns.md +223 -0
- package/.claude/skills/fullstack-developer/references/async-patterns.md +220 -0
- package/.claude/skills/fullstack-developer/references/bug-prevention.md +914 -0
- package/.claude/skills/fullstack-developer/references/code-quality-checklist.md +271 -0
- package/.claude/skills/fullstack-developer/references/complete-development-workflow.md +278 -0
- package/.claude/skills/fullstack-developer/references/context-isolation-protocol.md +256 -0
- package/.claude/skills/fullstack-developer/references/database-migration.md +331 -0
- package/.claude/skills/fullstack-developer/references/dependency-and-integrity-protocol.md +390 -0
- package/.claude/skills/fullstack-developer/references/development-phases.md +333 -0
- package/.claude/skills/fullstack-developer/references/expert-guide.md +214 -0
- package/.claude/skills/fullstack-developer/references/file-import-patterns.md +114 -0
- package/.claude/skills/fullstack-developer/references/graceful-degradation-patterns.md +78 -0
- package/.claude/skills/fullstack-developer/references/ide-lint-errors-guide.md +183 -0
- package/.claude/skills/fullstack-developer/references/integration-testing.md +301 -0
- package/.claude/skills/fullstack-developer/references/mock-api-patterns.md +307 -0
- package/.claude/skills/fullstack-developer/references/phase-gate-template.md +249 -0
- package/.claude/skills/fullstack-developer/references/post-edit-quality-gate.md +30 -0
- package/.claude/skills/fullstack-developer/references/python-engineering.md +79 -0
- package/.claude/skills/fullstack-developer/references/skill-orchestration.md +214 -0
- package/.claude/skills/fullstack-developer/references/skill-router-table.md +304 -0
- package/.claude/skills/fullstack-developer/references/state-sync.md +217 -0
- package/.claude/skills/fullstack-developer/references/ui-testing-checklist.md +292 -0
- package/.claude/skills/fullstack-developer/scripts/format_code.py +611 -0
- package/.claude/skills/fullstack-developer/scripts/lint_check.py +816 -0
- package/.claude/skills/fullstack-developer/scripts/requirements.txt +36 -0
- package/.claude/skills/performance-optimization/SKILL.md +250 -0
- package/.claude/skills/product-requirements/SKILL.md +357 -0
- package/.claude/skills/product-requirements/references/acceptance-criteria.md +335 -0
- package/.claude/skills/product-requirements/references/answer-first-questioning-protocol.md +299 -0
- package/.claude/skills/product-requirements/references/competitive-analysis-guide.md +183 -0
- package/.claude/skills/product-requirements/references/document-accuracy-protocol.md +253 -0
- package/.claude/skills/product-requirements/references/document-management-protocol.md +278 -0
- package/.claude/skills/product-requirements/references/external-standards.md +62 -0
- package/.claude/skills/product-requirements/references/feature-spec-template.md +359 -0
- package/.claude/skills/product-requirements/references/knowledge-acquisition-protocol.md +251 -0
- package/.claude/skills/product-requirements/references/plan-execution-protocol.md +334 -0
- package/.claude/skills/product-requirements/references/plan-generation-protocol.md +264 -0
- package/.claude/skills/product-requirements/references/prioritization-frameworks.md +80 -0
- package/.claude/skills/product-requirements/references/requirement-decomposition-protocol.md +291 -0
- package/.claude/skills/product-requirements/references/user-story-examples.md +297 -0
- package/.claude/skills/product-requirements/references/workflow-templates.md +266 -0
- package/.claude/skills/react-best-practices/SKILL.md +198 -0
- package/.claude/skills/react-best-practices/references/advanced-patterns.md +94 -0
- package/.claude/skills/react-best-practices/references/bundle-optimization.md +182 -0
- package/.claude/skills/react-best-practices/references/client-data-fetching.md +112 -0
- package/.claude/skills/react-best-practices/references/complete-guide.md +2249 -0
- package/.claude/skills/react-best-practices/references/eliminating-waterfalls.md +169 -0
- package/.claude/skills/react-best-practices/references/javascript-performance.md +256 -0
- package/.claude/skills/react-best-practices/references/rendering-performance.md +230 -0
- package/.claude/skills/react-best-practices/references/rerender-optimization.md +214 -0
- package/.claude/skills/react-best-practices/references/server-performance.md +182 -0
- package/.claude/skills/security-audit/SKILL.md +226 -0
- package/.claude/skills/shared-references/advanced-debugging-techniques.md +186 -0
- package/.claude/skills/shared-references/code-quality-checklist.md +218 -0
- package/.claude/skills/shared-references/code-review-efficiency-guide.md +125 -0
- package/.claude/skills/shared-references/mcp-dependency-compatibility-protocol.md +276 -0
- package/.claude/skills/shared-references/skill-call-graph.md +230 -0
- package/.claude/skills/shared-references/skill-orchestration-protocol.md +281 -0
- package/.claude/skills/shared-references/subagent-dispatch-templates.md +199 -0
- package/.claude/skills/skill-expert-skills/LICENSE.txt +204 -0
- package/.claude/skills/skill-expert-skills/QUICK_NAVIGATION.md +374 -0
- package/.claude/skills/skill-expert-skills/SKILL.md +247 -0
- package/.claude/skills/skill-expert-skills/docs/_index.md +91 -0
- package/.claude/skills/skill-expert-skills/references/deep-research-methodology.md +389 -0
- package/.claude/skills/skill-expert-skills/references/docs-generation-workflow.md +398 -0
- package/.claude/skills/skill-expert-skills/references/domain-expertise-protocol.md +343 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/_index.md +54 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/backend-expertise.md +517 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/bug-fixing-expertise.md +363 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/code-review-expertise.md +392 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge/frontend-expertise.md +410 -0
- package/.claude/skills/skill-expert-skills/references/domain-knowledge-template.md +503 -0
- package/.claude/skills/skill-expert-skills/references/examples.md +782 -0
- package/.claude/skills/skill-expert-skills/references/integration-examples.md +655 -0
- package/.claude/skills/skill-expert-skills/references/knowledge-validation-checklist.md +246 -0
- package/.claude/skills/skill-expert-skills/references/latest-knowledge-acquisition.md +461 -0
- package/.claude/skills/skill-expert-skills/references/mcp-tools-guide.md +439 -0
- package/.claude/skills/skill-expert-skills/references/official-best-practices.md +616 -0
- package/.claude/skills/skill-expert-skills/references/patterns.md +218 -0
- package/.claude/skills/skill-expert-skills/references/plugin-skills-guide.md +432 -0
- package/.claude/skills/skill-expert-skills/references/requirement-elicitation-protocol.md +290 -0
- package/.claude/skills/skill-expert-skills/references/skill-creator-SKILL.md +353 -0
- package/.claude/skills/skill-expert-skills/references/skill-templates.md +583 -0
- package/.claude/skills/skill-expert-skills/references/skills-knowledge-base.md +561 -0
- package/.claude/skills/skill-expert-skills/references/tools-guide.md +379 -0
- package/.claude/skills/skill-expert-skills/references/troubleshooting.md +378 -0
- package/.claude/skills/skill-expert-skills/references/universality-guide.md +205 -0
- package/.claude/skills/skill-expert-skills/references/writing-style-guide.md +466 -0
- package/.claude/skills/skill-expert-skills/scripts/__pycache__/quick_validate.cpython-313.pyc +0 -0
- package/.claude/skills/skill-expert-skills/scripts/__pycache__/universal_validate.cpython-313.pyc +0 -0
- package/.claude/skills/skill-expert-skills/scripts/analyze_trigger.py +425 -0
- package/.claude/skills/skill-expert-skills/scripts/diff_with_official.py +188 -0
- package/.claude/skills/skill-expert-skills/scripts/init_skill.py +349 -0
- package/.claude/skills/skill-expert-skills/scripts/package_skill.py +156 -0
- package/.claude/skills/skill-expert-skills/scripts/quick_validate.py +493 -0
- package/.claude/skills/skill-expert-skills/scripts/requirements.txt +2 -0
- package/.claude/skills/skill-expert-skills/scripts/universal_validate.py +182 -0
- package/.claude/skills/skill-expert-skills/scripts/upgrade_skill.py +431 -0
- package/.claude/skills/subagent-driven-development/SKILL.md +268 -0
- package/.claude/skills/test-driven-development/SKILL.md +246 -0
- package/.claude/skills/test-driven-development/references/testing-anti-patterns.md +192 -0
- package/.claude/skills/using-git-worktrees/SKILL.md +266 -0
- package/.claude/skills/using-skillstack/SKILL.md +127 -0
- package/.claude/skills/vercel-deploy/SKILL.md +166 -0
- package/.claude/skills/vercel-deploy/scripts/deploy.sh +249 -0
- package/.claude/skills/verification-before-completion/SKILL.md +305 -0
- package/.claude/skills/writing-plans/SKILL.md +259 -0
- package/README.md +69 -0
- package/bin/cli.js +468 -0
- package/lib/init.js +333 -0
- package/package.json +29 -0
|
@@ -0,0 +1,705 @@
|
|
|
1
|
+
# Complete Font Pairings Reference
|
|
2
|
+
|
|
3
|
+
56 curated typography combinations with Google Fonts imports.
|
|
4
|
+
|
|
5
|
+
## How to Use
|
|
6
|
+
|
|
7
|
+
Each pairing includes:
|
|
8
|
+
- **Display Font**: For headings, titles, hero text
|
|
9
|
+
- **Body Font**: For paragraphs, UI text, labels
|
|
10
|
+
- **Vibe**: The emotional/aesthetic feel
|
|
11
|
+
- **Best For**: Recommended use cases
|
|
12
|
+
- **Import**: Ready-to-use Google Fonts import
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Modern & Tech (10 pairings)
|
|
17
|
+
|
|
18
|
+
### 1. Modern Tech
|
|
19
|
+
```css
|
|
20
|
+
/* Display: Clash Display | Body: Satoshi */
|
|
21
|
+
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@400,500&display=swap');
|
|
22
|
+
|
|
23
|
+
.heading { font-family: 'Clash Display', sans-serif; }
|
|
24
|
+
.body { font-family: 'Satoshi', sans-serif; }
|
|
25
|
+
```
|
|
26
|
+
**Vibe**: Clean, contemporary, confident
|
|
27
|
+
**Best For**: SaaS, tech startups, apps
|
|
28
|
+
|
|
29
|
+
### 2. Geometric Modern
|
|
30
|
+
```css
|
|
31
|
+
/* Display: Bebas Neue | Body: Work Sans */
|
|
32
|
+
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@400;500;600&display=swap');
|
|
33
|
+
|
|
34
|
+
.heading { font-family: 'Bebas Neue', sans-serif; }
|
|
35
|
+
.body { font-family: 'Work Sans', sans-serif; }
|
|
36
|
+
```
|
|
37
|
+
**Vibe**: Bold, impactful, modern
|
|
38
|
+
**Best For**: Sports, fitness, bold brands
|
|
39
|
+
|
|
40
|
+
### 3. Clean Startup
|
|
41
|
+
```css
|
|
42
|
+
/* Display: Plus Jakarta Sans | Body: Plus Jakarta Sans */
|
|
43
|
+
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
|
|
44
|
+
|
|
45
|
+
.heading { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
|
|
46
|
+
.body { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400; }
|
|
47
|
+
```
|
|
48
|
+
**Vibe**: Friendly, professional, approachable
|
|
49
|
+
**Best For**: SaaS, fintech, modern business
|
|
50
|
+
|
|
51
|
+
### 4. Developer Focus
|
|
52
|
+
```css
|
|
53
|
+
/* Display: JetBrains Mono | Body: Fira Sans */
|
|
54
|
+
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Fira+Sans:wght@400;500&display=swap');
|
|
55
|
+
|
|
56
|
+
.heading { font-family: 'JetBrains Mono', monospace; }
|
|
57
|
+
.body { font-family: 'Fira Sans', sans-serif; }
|
|
58
|
+
```
|
|
59
|
+
**Vibe**: Technical, precise, developer-friendly
|
|
60
|
+
**Best For**: Dev tools, documentation, code-related
|
|
61
|
+
|
|
62
|
+
### 5. Neo Grotesque
|
|
63
|
+
```css
|
|
64
|
+
/* Display: Outfit | Body: Outfit */
|
|
65
|
+
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
|
|
66
|
+
|
|
67
|
+
.heading { font-family: 'Outfit', sans-serif; font-weight: 700; }
|
|
68
|
+
.body { font-family: 'Outfit', sans-serif; font-weight: 400; }
|
|
69
|
+
```
|
|
70
|
+
**Vibe**: Clean, geometric, versatile
|
|
71
|
+
**Best For**: General purpose, apps, websites
|
|
72
|
+
|
|
73
|
+
### 6. Futuristic Tech
|
|
74
|
+
```css
|
|
75
|
+
/* Display: Orbitron | Body: Rajdhani */
|
|
76
|
+
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;600&display=swap');
|
|
77
|
+
|
|
78
|
+
.heading { font-family: 'Orbitron', sans-serif; }
|
|
79
|
+
.body { font-family: 'Rajdhani', sans-serif; }
|
|
80
|
+
```
|
|
81
|
+
**Vibe**: Sci-fi, futuristic, space-age
|
|
82
|
+
**Best For**: Gaming, tech, sci-fi themes
|
|
83
|
+
|
|
84
|
+
### 7. Minimal Tech
|
|
85
|
+
```css
|
|
86
|
+
/* Display: Sora | Body: Inter */
|
|
87
|
+
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Inter:wght@400;500&display=swap');
|
|
88
|
+
|
|
89
|
+
.heading { font-family: 'Sora', sans-serif; }
|
|
90
|
+
.body { font-family: 'Inter', sans-serif; }
|
|
91
|
+
```
|
|
92
|
+
**Vibe**: Minimal, balanced, readable
|
|
93
|
+
**Best For**: Apps, dashboards, clean interfaces
|
|
94
|
+
|
|
95
|
+
### 8. Bold Statement
|
|
96
|
+
```css
|
|
97
|
+
/* Display: Archivo Black | Body: DM Sans */
|
|
98
|
+
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@400;500;700&display=swap');
|
|
99
|
+
|
|
100
|
+
.heading { font-family: 'Archivo Black', sans-serif; }
|
|
101
|
+
.body { font-family: 'DM Sans', sans-serif; }
|
|
102
|
+
```
|
|
103
|
+
**Vibe**: Strong, confident, impactful
|
|
104
|
+
**Best For**: Bold brands, agencies, statements
|
|
105
|
+
|
|
106
|
+
### 9. Rounded Friendly
|
|
107
|
+
```css
|
|
108
|
+
/* Display: Nunito | Body: Nunito Sans */
|
|
109
|
+
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Nunito+Sans:wght@400;600&display=swap');
|
|
110
|
+
|
|
111
|
+
.heading { font-family: 'Nunito', sans-serif; }
|
|
112
|
+
.body { font-family: 'Nunito Sans', sans-serif; }
|
|
113
|
+
```
|
|
114
|
+
**Vibe**: Friendly, approachable, soft
|
|
115
|
+
**Best For**: Consumer apps, education, health
|
|
116
|
+
|
|
117
|
+
### 10. Sharp Modern
|
|
118
|
+
```css
|
|
119
|
+
/* Display: Manrope | Body: Manrope */
|
|
120
|
+
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
|
|
121
|
+
|
|
122
|
+
.heading { font-family: 'Manrope', sans-serif; font-weight: 700; }
|
|
123
|
+
.body { font-family: 'Manrope', sans-serif; font-weight: 400; }
|
|
124
|
+
```
|
|
125
|
+
**Vibe**: Sharp, modern, distinctive
|
|
126
|
+
**Best For**: Tech, fintech, premium products
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
## Editorial & Elegant (10 pairings)
|
|
131
|
+
|
|
132
|
+
### 11. Classic Editorial
|
|
133
|
+
```css
|
|
134
|
+
/* Display: Playfair Display | Body: Source Serif Pro */
|
|
135
|
+
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Serif+Pro:wght@400;600&display=swap');
|
|
136
|
+
|
|
137
|
+
.heading { font-family: 'Playfair Display', serif; }
|
|
138
|
+
.body { font-family: 'Source Serif Pro', serif; }
|
|
139
|
+
```
|
|
140
|
+
**Vibe**: Sophisticated, literary, timeless
|
|
141
|
+
**Best For**: Magazines, blogs, publishing
|
|
142
|
+
|
|
143
|
+
### 12. Modern Serif
|
|
144
|
+
```css
|
|
145
|
+
/* Display: DM Serif Display | Body: DM Sans */
|
|
146
|
+
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@400;500;700&display=swap');
|
|
147
|
+
|
|
148
|
+
.heading { font-family: 'DM Serif Display', serif; }
|
|
149
|
+
.body { font-family: 'DM Sans', sans-serif; }
|
|
150
|
+
```
|
|
151
|
+
**Vibe**: Elegant, warm, approachable
|
|
152
|
+
**Best For**: Lifestyle, food, hospitality
|
|
153
|
+
|
|
154
|
+
### 13. Luxury Fashion
|
|
155
|
+
```css
|
|
156
|
+
/* Display: Cormorant Garamond | Body: Lato */
|
|
157
|
+
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');
|
|
158
|
+
|
|
159
|
+
.heading { font-family: 'Cormorant Garamond', serif; }
|
|
160
|
+
.body { font-family: 'Lato', sans-serif; }
|
|
161
|
+
```
|
|
162
|
+
**Vibe**: Luxurious, refined, fashion-forward
|
|
163
|
+
**Best For**: Fashion, luxury, high-end brands
|
|
164
|
+
|
|
165
|
+
### 14. News & Publication
|
|
166
|
+
```css
|
|
167
|
+
/* Display: Libre Baskerville | Body: Libre Franklin */
|
|
168
|
+
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;500;600&display=swap');
|
|
169
|
+
|
|
170
|
+
.heading { font-family: 'Libre Baskerville', serif; }
|
|
171
|
+
.body { font-family: 'Libre Franklin', sans-serif; }
|
|
172
|
+
```
|
|
173
|
+
**Vibe**: Trustworthy, journalistic, classic
|
|
174
|
+
**Best For**: News, journalism, serious content
|
|
175
|
+
|
|
176
|
+
### 15. Artistic Serif
|
|
177
|
+
```css
|
|
178
|
+
/* Display: Yeseva One | Body: Josefin Sans */
|
|
179
|
+
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&family=Josefin+Sans:wght@300;400;600&display=swap');
|
|
180
|
+
|
|
181
|
+
.heading { font-family: 'Yeseva One', serif; }
|
|
182
|
+
.body { font-family: 'Josefin Sans', sans-serif; }
|
|
183
|
+
```
|
|
184
|
+
**Vibe**: Artistic, elegant, distinctive
|
|
185
|
+
**Best For**: Art galleries, creative studios
|
|
186
|
+
|
|
187
|
+
### 16. High-End Minimal
|
|
188
|
+
```css
|
|
189
|
+
/* Display: Bodoni Moda | Body: Mulish */
|
|
190
|
+
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;500;600;700&family=Mulish:wght@300;400;600&display=swap');
|
|
191
|
+
|
|
192
|
+
.heading { font-family: 'Bodoni Moda', serif; }
|
|
193
|
+
.body { font-family: 'Mulish', sans-serif; }
|
|
194
|
+
```
|
|
195
|
+
**Vibe**: High fashion, minimal luxury
|
|
196
|
+
**Best For**: Fashion, beauty, luxury retail
|
|
197
|
+
|
|
198
|
+
### 17. Vintage Elegant
|
|
199
|
+
```css
|
|
200
|
+
/* Display: Abril Fatface | Body: Crimson Text */
|
|
201
|
+
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Crimson+Text:wght@400;600&display=swap');
|
|
202
|
+
|
|
203
|
+
.heading { font-family: 'Abril Fatface', serif; }
|
|
204
|
+
.body { font-family: 'Crimson Text', serif; }
|
|
205
|
+
```
|
|
206
|
+
**Vibe**: Classic, nostalgic, elegant
|
|
207
|
+
**Best For**: Wine, vintage brands, traditional
|
|
208
|
+
|
|
209
|
+
### 18. Contemporary Serif
|
|
210
|
+
```css
|
|
211
|
+
/* Display: Fraunces | Body: Commissioner */
|
|
212
|
+
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;700;900&family=Commissioner:wght@400;500&display=swap');
|
|
213
|
+
|
|
214
|
+
.heading { font-family: 'Fraunces', serif; }
|
|
215
|
+
.body { font-family: 'Commissioner', sans-serif; }
|
|
216
|
+
```
|
|
217
|
+
**Vibe**: Contemporary, warm, unique
|
|
218
|
+
**Best For**: Creative brands, artisan products
|
|
219
|
+
|
|
220
|
+
### 19. Refined Professional
|
|
221
|
+
```css
|
|
222
|
+
/* Display: EB Garamond | Body: Open Sans */
|
|
223
|
+
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');
|
|
224
|
+
|
|
225
|
+
.heading { font-family: 'EB Garamond', serif; }
|
|
226
|
+
.body { font-family: 'Open Sans', sans-serif; }
|
|
227
|
+
```
|
|
228
|
+
**Vibe**: Professional, refined, readable
|
|
229
|
+
**Best For**: Legal, corporate, professional services
|
|
230
|
+
|
|
231
|
+
### 20. Magazine Style
|
|
232
|
+
```css
|
|
233
|
+
/* Display: Cinzel | Body: Fauna One */
|
|
234
|
+
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Fauna+One&display=swap');
|
|
235
|
+
|
|
236
|
+
.heading { font-family: 'Cinzel', serif; }
|
|
237
|
+
.body { font-family: 'Fauna One', serif; }
|
|
238
|
+
```
|
|
239
|
+
**Vibe**: Magazine, editorial, cultural
|
|
240
|
+
**Best For**: Art, culture, events
|
|
241
|
+
|
|
242
|
+
---
|
|
243
|
+
|
|
244
|
+
## Playful & Creative (10 pairings)
|
|
245
|
+
|
|
246
|
+
### 21. Fun & Friendly
|
|
247
|
+
```css
|
|
248
|
+
/* Display: Fredoka One | Body: Nunito */
|
|
249
|
+
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700&display=swap');
|
|
250
|
+
|
|
251
|
+
.heading { font-family: 'Fredoka One', sans-serif; }
|
|
252
|
+
.body { font-family: 'Nunito', sans-serif; }
|
|
253
|
+
```
|
|
254
|
+
**Vibe**: Playful, friendly, fun
|
|
255
|
+
**Best For**: Kids, games, casual brands
|
|
256
|
+
|
|
257
|
+
### 22. Bold Playful
|
|
258
|
+
```css
|
|
259
|
+
/* Display: Bungee | Body: Quicksand */
|
|
260
|
+
@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Quicksand:wght@400;500;600&display=swap');
|
|
261
|
+
|
|
262
|
+
.heading { font-family: 'Bungee', sans-serif; }
|
|
263
|
+
.body { font-family: 'Quicksand', sans-serif; }
|
|
264
|
+
```
|
|
265
|
+
**Vibe**: Bold, energetic, attention-grabbing
|
|
266
|
+
**Best For**: Gaming, sports, youth brands
|
|
267
|
+
|
|
268
|
+
### 23. Rounded Joy
|
|
269
|
+
```css
|
|
270
|
+
/* Display: Baloo 2 | Body: Poppins */
|
|
271
|
+
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Poppins:wght@400;500;600&display=swap');
|
|
272
|
+
|
|
273
|
+
.heading { font-family: 'Baloo 2', cursive; }
|
|
274
|
+
.body { font-family: 'Poppins', sans-serif; }
|
|
275
|
+
```
|
|
276
|
+
**Vibe**: Joyful, welcoming, rounded
|
|
277
|
+
**Best For**: Food, family, lifestyle
|
|
278
|
+
|
|
279
|
+
### 24. Quirky Modern
|
|
280
|
+
```css
|
|
281
|
+
/* Display: Righteous | Body: Maven Pro */
|
|
282
|
+
@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Maven+Pro:wght@400;500;600&display=swap');
|
|
283
|
+
|
|
284
|
+
.heading { font-family: 'Righteous', cursive; }
|
|
285
|
+
.body { font-family: 'Maven Pro', sans-serif; }
|
|
286
|
+
```
|
|
287
|
+
**Vibe**: Quirky, distinctive, memorable
|
|
288
|
+
**Best For**: Creative agencies, entertainment
|
|
289
|
+
|
|
290
|
+
### 25. Retro Gaming
|
|
291
|
+
```css
|
|
292
|
+
/* Display: Press Start 2P | Body: VT323 */
|
|
293
|
+
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');
|
|
294
|
+
|
|
295
|
+
.heading { font-family: 'Press Start 2P', cursive; font-size: 1.5rem; }
|
|
296
|
+
.body { font-family: 'VT323', monospace; font-size: 1.25rem; }
|
|
297
|
+
```
|
|
298
|
+
**Vibe**: Retro, 8-bit, nostalgic
|
|
299
|
+
**Best For**: Retro games, pixel art, nostalgia
|
|
300
|
+
|
|
301
|
+
### 26. Comic Style
|
|
302
|
+
```css
|
|
303
|
+
/* Display: Bangers | Body: Comic Neue */
|
|
304
|
+
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Comic+Neue:wght@400;700&display=swap');
|
|
305
|
+
|
|
306
|
+
.heading { font-family: 'Bangers', cursive; }
|
|
307
|
+
.body { font-family: 'Comic Neue', cursive; }
|
|
308
|
+
```
|
|
309
|
+
**Vibe**: Comic, fun, expressive
|
|
310
|
+
**Best For**: Comics, kids content, casual
|
|
311
|
+
|
|
312
|
+
### 27. Handwritten Casual
|
|
313
|
+
```css
|
|
314
|
+
/* Display: Pacifico | Body: Cabin */
|
|
315
|
+
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Cabin:wght@400;500;600&display=swap');
|
|
316
|
+
|
|
317
|
+
.heading { font-family: 'Pacifico', cursive; }
|
|
318
|
+
.body { font-family: 'Cabin', sans-serif; }
|
|
319
|
+
```
|
|
320
|
+
**Vibe**: Casual, beachy, relaxed
|
|
321
|
+
**Best For**: Restaurants, cafes, lifestyle
|
|
322
|
+
|
|
323
|
+
### 28. Artistic Brush
|
|
324
|
+
```css
|
|
325
|
+
/* Display: Permanent Marker | Body: Patrick Hand */
|
|
326
|
+
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Patrick+Hand&display=swap');
|
|
327
|
+
|
|
328
|
+
.heading { font-family: 'Permanent Marker', cursive; }
|
|
329
|
+
.body { font-family: 'Patrick Hand', cursive; }
|
|
330
|
+
```
|
|
331
|
+
**Vibe**: Hand-drawn, artistic, personal
|
|
332
|
+
**Best For**: Craft, DIY, personal brands
|
|
333
|
+
|
|
334
|
+
### 29. Youth Energy
|
|
335
|
+
```css
|
|
336
|
+
/* Display: Titan One | Body: Nunito Sans */
|
|
337
|
+
@import url('https://fonts.googleapis.com/css2?family=Titan+One&family=Nunito+Sans:wght@400;600&display=swap');
|
|
338
|
+
|
|
339
|
+
.heading { font-family: 'Titan One', cursive; }
|
|
340
|
+
.body { font-family: 'Nunito Sans', sans-serif; }
|
|
341
|
+
```
|
|
342
|
+
**Vibe**: Energetic, bold, youthful
|
|
343
|
+
**Best For**: Sports, kids, entertainment
|
|
344
|
+
|
|
345
|
+
### 30. Soft Playful
|
|
346
|
+
```css
|
|
347
|
+
/* Display: Comfortaa | Body: Comfortaa */
|
|
348
|
+
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');
|
|
349
|
+
|
|
350
|
+
.heading { font-family: 'Comfortaa', cursive; font-weight: 700; }
|
|
351
|
+
.body { font-family: 'Comfortaa', cursive; font-weight: 400; }
|
|
352
|
+
```
|
|
353
|
+
**Vibe**: Soft, rounded, friendly
|
|
354
|
+
**Best For**: Wellness, baby products, gentle brands
|
|
355
|
+
|
|
356
|
+
---
|
|
357
|
+
|
|
358
|
+
## Professional & Corporate (10 pairings)
|
|
359
|
+
|
|
360
|
+
### 31. Corporate Classic
|
|
361
|
+
```css
|
|
362
|
+
/* Display: Lexend | Body: Inter */
|
|
363
|
+
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');
|
|
364
|
+
|
|
365
|
+
.heading { font-family: 'Lexend', sans-serif; }
|
|
366
|
+
.body { font-family: 'Inter', sans-serif; }
|
|
367
|
+
```
|
|
368
|
+
**Vibe**: Professional, clear, accessible
|
|
369
|
+
**Best For**: Corporate, B2B, enterprise
|
|
370
|
+
|
|
371
|
+
### 32. Finance Trust
|
|
372
|
+
```css
|
|
373
|
+
/* Display: Merriweather | Body: Source Sans Pro */
|
|
374
|
+
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Source+Sans+Pro:wght@400;600&display=swap');
|
|
375
|
+
|
|
376
|
+
.heading { font-family: 'Merriweather', serif; }
|
|
377
|
+
.body { font-family: 'Source Sans Pro', sans-serif; }
|
|
378
|
+
```
|
|
379
|
+
**Vibe**: Trustworthy, established, reliable
|
|
380
|
+
**Best For**: Finance, banking, insurance
|
|
381
|
+
|
|
382
|
+
### 33. Tech Professional
|
|
383
|
+
```css
|
|
384
|
+
/* Display: IBM Plex Sans | Body: IBM Plex Sans */
|
|
385
|
+
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');
|
|
386
|
+
|
|
387
|
+
.heading { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; }
|
|
388
|
+
.body { font-family: 'IBM Plex Sans', sans-serif; font-weight: 400; }
|
|
389
|
+
```
|
|
390
|
+
**Vibe**: Technical, enterprise, precise
|
|
391
|
+
**Best For**: Enterprise tech, B2B SaaS
|
|
392
|
+
|
|
393
|
+
### 34. Legal Authority
|
|
394
|
+
```css
|
|
395
|
+
/* Display: Lora | Body: Roboto */
|
|
396
|
+
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');
|
|
397
|
+
|
|
398
|
+
.heading { font-family: 'Lora', serif; }
|
|
399
|
+
.body { font-family: 'Roboto', sans-serif; }
|
|
400
|
+
```
|
|
401
|
+
**Vibe**: Authoritative, professional, serious
|
|
402
|
+
**Best For**: Legal, consulting, professional services
|
|
403
|
+
|
|
404
|
+
### 35. Clean Business
|
|
405
|
+
```css
|
|
406
|
+
/* Display: Barlow | Body: Barlow */
|
|
407
|
+
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&display=swap');
|
|
408
|
+
|
|
409
|
+
.heading { font-family: 'Barlow', sans-serif; font-weight: 700; }
|
|
410
|
+
.body { font-family: 'Barlow', sans-serif; font-weight: 400; }
|
|
411
|
+
```
|
|
412
|
+
**Vibe**: Clean, versatile, modern business
|
|
413
|
+
**Best For**: Business, agencies, services
|
|
414
|
+
|
|
415
|
+
### 36. Government/Civic
|
|
416
|
+
```css
|
|
417
|
+
/* Display: Public Sans | Body: Public Sans */
|
|
418
|
+
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700&display=swap');
|
|
419
|
+
|
|
420
|
+
.heading { font-family: 'Public Sans', sans-serif; font-weight: 700; }
|
|
421
|
+
.body { font-family: 'Public Sans', sans-serif; font-weight: 400; }
|
|
422
|
+
```
|
|
423
|
+
**Vibe**: Official, accessible, clear
|
|
424
|
+
**Best For**: Government, public sector, civic
|
|
425
|
+
|
|
426
|
+
### 37. Healthcare Professional
|
|
427
|
+
```css
|
|
428
|
+
/* Display: Rubik | Body: Rubik */
|
|
429
|
+
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');
|
|
430
|
+
|
|
431
|
+
.heading { font-family: 'Rubik', sans-serif; font-weight: 600; }
|
|
432
|
+
.body { font-family: 'Rubik', sans-serif; font-weight: 400; }
|
|
433
|
+
```
|
|
434
|
+
**Vibe**: Approachable, professional, modern
|
|
435
|
+
**Best For**: Healthcare, wellness, medical
|
|
436
|
+
|
|
437
|
+
### 38. Educational
|
|
438
|
+
```css
|
|
439
|
+
/* Display: Poppins | Body: Lato */
|
|
440
|
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Lato:wght@400;700&display=swap');
|
|
441
|
+
|
|
442
|
+
.heading { font-family: 'Poppins', sans-serif; }
|
|
443
|
+
.body { font-family: 'Lato', sans-serif; }
|
|
444
|
+
```
|
|
445
|
+
**Vibe**: Friendly, educational, clear
|
|
446
|
+
**Best For**: Education, e-learning, schools
|
|
447
|
+
|
|
448
|
+
### 39. Real Estate
|
|
449
|
+
```css
|
|
450
|
+
/* Display: Montserrat | Body: Hind */
|
|
451
|
+
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Hind:wght@400;500&display=swap');
|
|
452
|
+
|
|
453
|
+
.heading { font-family: 'Montserrat', sans-serif; }
|
|
454
|
+
.body { font-family: 'Hind', sans-serif; }
|
|
455
|
+
```
|
|
456
|
+
**Vibe**: Modern, professional, trustworthy
|
|
457
|
+
**Best For**: Real estate, architecture, property
|
|
458
|
+
|
|
459
|
+
### 40. Non-Profit
|
|
460
|
+
```css
|
|
461
|
+
/* Display: Oxygen | Body: Cabin */
|
|
462
|
+
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&family=Cabin:wght@400;500;600&display=swap');
|
|
463
|
+
|
|
464
|
+
.heading { font-family: 'Oxygen', sans-serif; }
|
|
465
|
+
.body { font-family: 'Cabin', sans-serif; }
|
|
466
|
+
```
|
|
467
|
+
**Vibe**: Warm, accessible, mission-driven
|
|
468
|
+
**Best For**: Non-profits, charities, causes
|
|
469
|
+
|
|
470
|
+
---
|
|
471
|
+
|
|
472
|
+
## Brutalist & Bold (8 pairings)
|
|
473
|
+
|
|
474
|
+
### 41. Pure Brutalism
|
|
475
|
+
```css
|
|
476
|
+
/* Display: Anton | Body: IBM Plex Mono */
|
|
477
|
+
@import url('https://fonts.googleapis.com/css2?family=Anton&family=IBM+Plex+Mono:wght@400;500&display=swap');
|
|
478
|
+
|
|
479
|
+
.heading { font-family: 'Anton', sans-serif; }
|
|
480
|
+
.body { font-family: 'IBM Plex Mono', monospace; }
|
|
481
|
+
```
|
|
482
|
+
**Vibe**: Raw, bold, unapologetic
|
|
483
|
+
**Best For**: Creative agencies, portfolios, art
|
|
484
|
+
|
|
485
|
+
### 42. Neo-Brutalist
|
|
486
|
+
```css
|
|
487
|
+
/* Display: Oswald | Body: Space Mono */
|
|
488
|
+
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');
|
|
489
|
+
|
|
490
|
+
.heading { font-family: 'Oswald', sans-serif; }
|
|
491
|
+
.body { font-family: 'Space Mono', monospace; }
|
|
492
|
+
```
|
|
493
|
+
**Vibe**: Industrial, striking, memorable
|
|
494
|
+
**Best For**: Fashion, music, creative
|
|
495
|
+
|
|
496
|
+
### 43. Swiss Bold
|
|
497
|
+
```css
|
|
498
|
+
/* Display: Bebas Neue | Body: Helvetica Neue, Arial */
|
|
499
|
+
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
|
|
500
|
+
|
|
501
|
+
.heading { font-family: 'Bebas Neue', sans-serif; }
|
|
502
|
+
.body { font-family: 'Helvetica Neue', Arial, sans-serif; }
|
|
503
|
+
```
|
|
504
|
+
**Vibe**: Swiss design, bold, clean
|
|
505
|
+
**Best For**: Design agencies, minimal bold
|
|
506
|
+
|
|
507
|
+
### 44. Maximum Impact
|
|
508
|
+
```css
|
|
509
|
+
/* Display: Black Ops One | Body: Roboto Condensed */
|
|
510
|
+
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Roboto+Condensed:wght@400;700&display=swap');
|
|
511
|
+
|
|
512
|
+
.heading { font-family: 'Black Ops One', cursive; }
|
|
513
|
+
.body { font-family: 'Roboto Condensed', sans-serif; }
|
|
514
|
+
```
|
|
515
|
+
**Vibe**: Military, tactical, strong
|
|
516
|
+
**Best For**: Gaming, action, sports
|
|
517
|
+
|
|
518
|
+
### 45. Condensed Power
|
|
519
|
+
```css
|
|
520
|
+
/* Display: Fjalla One | Body: Noto Sans */
|
|
521
|
+
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Noto+Sans:wght@400;500;600&display=swap');
|
|
522
|
+
|
|
523
|
+
.heading { font-family: 'Fjalla One', sans-serif; }
|
|
524
|
+
.body { font-family: 'Noto Sans', sans-serif; }
|
|
525
|
+
```
|
|
526
|
+
**Vibe**: Powerful, impactful, news
|
|
527
|
+
**Best For**: Sports, news, events
|
|
528
|
+
|
|
529
|
+
### 46. Stark Modern
|
|
530
|
+
```css
|
|
531
|
+
/* Display: Six Caps | Body: Karla */
|
|
532
|
+
@import url('https://fonts.googleapis.com/css2?family=Six+Caps&family=Karla:wght@400;500;600&display=swap');
|
|
533
|
+
|
|
534
|
+
.heading { font-family: 'Six Caps', sans-serif; letter-spacing: 0.1em; }
|
|
535
|
+
.body { font-family: 'Karla', sans-serif; }
|
|
536
|
+
```
|
|
537
|
+
**Vibe**: Stark, dramatic, fashion
|
|
538
|
+
**Best For**: Fashion, luxury, editorial
|
|
539
|
+
|
|
540
|
+
### 47. Industrial
|
|
541
|
+
```css
|
|
542
|
+
/* Display: Teko | Body: Abel */
|
|
543
|
+
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Abel&display=swap');
|
|
544
|
+
|
|
545
|
+
.heading { font-family: 'Teko', sans-serif; }
|
|
546
|
+
.body { font-family: 'Abel', sans-serif; }
|
|
547
|
+
```
|
|
548
|
+
**Vibe**: Industrial, mechanical, tech
|
|
549
|
+
**Best For**: Manufacturing, automotive, tech
|
|
550
|
+
|
|
551
|
+
### 48. Ultra Bold
|
|
552
|
+
```css
|
|
553
|
+
/* Display: Staatliches | Body: Asap */
|
|
554
|
+
@import url('https://fonts.googleapis.com/css2?family=Staatliches&family=Asap:wght@400;500;600&display=swap');
|
|
555
|
+
|
|
556
|
+
.heading { font-family: 'Staatliches', cursive; }
|
|
557
|
+
.body { font-family: 'Asap', sans-serif; }
|
|
558
|
+
```
|
|
559
|
+
**Vibe**: Statement, bold, modern
|
|
560
|
+
**Best For**: Events, sports, bold brands
|
|
561
|
+
|
|
562
|
+
---
|
|
563
|
+
|
|
564
|
+
## Vintage & Retro (8 pairings)
|
|
565
|
+
|
|
566
|
+
### 49. Art Deco
|
|
567
|
+
```css
|
|
568
|
+
/* Display: Poiret One | Body: Josefin Sans */
|
|
569
|
+
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Josefin+Sans:wght@300;400;600&display=swap');
|
|
570
|
+
|
|
571
|
+
.heading { font-family: 'Poiret One', cursive; }
|
|
572
|
+
.body { font-family: 'Josefin Sans', sans-serif; }
|
|
573
|
+
```
|
|
574
|
+
**Vibe**: Art deco, glamorous, 1920s
|
|
575
|
+
**Best For**: Events, hospitality, luxury
|
|
576
|
+
|
|
577
|
+
### 50. Vintage Americana
|
|
578
|
+
```css
|
|
579
|
+
/* Display: Alfa Slab One | Body: Arvo */
|
|
580
|
+
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Arvo:wght@400;700&display=swap');
|
|
581
|
+
|
|
582
|
+
.heading { font-family: 'Alfa Slab One', cursive; }
|
|
583
|
+
.body { font-family: 'Arvo', serif; }
|
|
584
|
+
```
|
|
585
|
+
**Vibe**: Americana, vintage, bold
|
|
586
|
+
**Best For**: BBQ, craft beer, Americana
|
|
587
|
+
|
|
588
|
+
### 51. Retro Script
|
|
589
|
+
```css
|
|
590
|
+
/* Display: Sacramento | Body: Lato */
|
|
591
|
+
@import url('https://fonts.googleapis.com/css2?family=Sacramento&family=Lato:wght@300;400;700&display=swap');
|
|
592
|
+
|
|
593
|
+
.heading { font-family: 'Sacramento', cursive; }
|
|
594
|
+
.body { font-family: 'Lato', sans-serif; }
|
|
595
|
+
```
|
|
596
|
+
**Vibe**: Elegant script, vintage
|
|
597
|
+
**Best For**: Weddings, invitations, feminine
|
|
598
|
+
|
|
599
|
+
### 52. Typewriter Nostalgic
|
|
600
|
+
```css
|
|
601
|
+
/* Display: Special Elite | Body: Courier Prime */
|
|
602
|
+
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Courier+Prime:wght@400;700&display=swap');
|
|
603
|
+
|
|
604
|
+
.heading { font-family: 'Special Elite', cursive; }
|
|
605
|
+
.body { font-family: 'Courier Prime', monospace; }
|
|
606
|
+
```
|
|
607
|
+
**Vibe**: Typewriter, nostalgic, vintage
|
|
608
|
+
**Best For**: Writers, journals, vintage
|
|
609
|
+
|
|
610
|
+
### 53. Western
|
|
611
|
+
```css
|
|
612
|
+
/* Display: Rye | Body: Bitter */
|
|
613
|
+
@import url('https://fonts.googleapis.com/css2?family=Rye&family=Bitter:wght@400;500;600&display=swap');
|
|
614
|
+
|
|
615
|
+
.heading { font-family: 'Rye', cursive; }
|
|
616
|
+
.body { font-family: 'Bitter', serif; }
|
|
617
|
+
```
|
|
618
|
+
**Vibe**: Western, rustic, bold
|
|
619
|
+
**Best For**: Whiskey, western brands, BBQ
|
|
620
|
+
|
|
621
|
+
### 54. Mid-Century
|
|
622
|
+
```css
|
|
623
|
+
/* Display: Bowlby One SC | Body: Sarabun */
|
|
624
|
+
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Sarabun:wght@400;500;600&display=swap');
|
|
625
|
+
|
|
626
|
+
.heading { font-family: 'Bowlby One SC', cursive; }
|
|
627
|
+
.body { font-family: 'Sarabun', sans-serif; }
|
|
628
|
+
```
|
|
629
|
+
**Vibe**: Mid-century, retro modern
|
|
630
|
+
**Best For**: Retro brands, diners, vintage modern
|
|
631
|
+
|
|
632
|
+
### 55. Victorian
|
|
633
|
+
```css
|
|
634
|
+
/* Display: Satisfy | Body: Cardo */
|
|
635
|
+
@import url('https://fonts.googleapis.com/css2?family=Satisfy&family=Cardo:wght@400;700&display=swap');
|
|
636
|
+
|
|
637
|
+
.heading { font-family: 'Satisfy', cursive; }
|
|
638
|
+
.body { font-family: 'Cardo', serif; }
|
|
639
|
+
```
|
|
640
|
+
**Vibe**: Victorian, ornate, elegant
|
|
641
|
+
**Best For**: Weddings, antiques, luxury
|
|
642
|
+
|
|
643
|
+
### 56. Groovy 70s
|
|
644
|
+
```css
|
|
645
|
+
/* Display: Monoton | Body: Quattrocento Sans */
|
|
646
|
+
@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Quattrocento+Sans:wght@400;700&display=swap');
|
|
647
|
+
|
|
648
|
+
.heading { font-family: 'Monoton', cursive; }
|
|
649
|
+
.body { font-family: 'Quattrocento Sans', sans-serif; }
|
|
650
|
+
```
|
|
651
|
+
**Vibe**: 70s, disco, groovy
|
|
652
|
+
**Best For**: Retro events, music, entertainment
|
|
653
|
+
|
|
654
|
+
---
|
|
655
|
+
|
|
656
|
+
## Typography CSS Variables Template
|
|
657
|
+
|
|
658
|
+
```css
|
|
659
|
+
:root {
|
|
660
|
+
/* Font families */
|
|
661
|
+
--font-display: 'Clash Display', sans-serif;
|
|
662
|
+
--font-body: 'Satoshi', sans-serif;
|
|
663
|
+
--font-mono: 'JetBrains Mono', monospace;
|
|
664
|
+
|
|
665
|
+
/* Font sizes (fluid typography) */
|
|
666
|
+
--text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
|
|
667
|
+
--text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
|
|
668
|
+
--text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
|
|
669
|
+
--text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
|
|
670
|
+
--text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
|
|
671
|
+
--text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
|
|
672
|
+
--text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
|
|
673
|
+
--text-4xl: clamp(2.5rem, 1.75rem + 3.75vw, 4rem);
|
|
674
|
+
--text-5xl: clamp(3rem, 2rem + 5vw, 5rem);
|
|
675
|
+
|
|
676
|
+
/* Line heights */
|
|
677
|
+
--leading-tight: 1.2;
|
|
678
|
+
--leading-snug: 1.375;
|
|
679
|
+
--leading-normal: 1.5;
|
|
680
|
+
--leading-relaxed: 1.625;
|
|
681
|
+
--leading-loose: 2;
|
|
682
|
+
|
|
683
|
+
/* Letter spacing */
|
|
684
|
+
--tracking-tighter: -0.05em;
|
|
685
|
+
--tracking-tight: -0.025em;
|
|
686
|
+
--tracking-normal: 0;
|
|
687
|
+
--tracking-wide: 0.025em;
|
|
688
|
+
--tracking-wider: 0.05em;
|
|
689
|
+
--tracking-widest: 0.1em;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
/* Usage example */
|
|
693
|
+
h1 {
|
|
694
|
+
font-family: var(--font-display);
|
|
695
|
+
font-size: var(--text-4xl);
|
|
696
|
+
line-height: var(--leading-tight);
|
|
697
|
+
letter-spacing: var(--tracking-tight);
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
p {
|
|
701
|
+
font-family: var(--font-body);
|
|
702
|
+
font-size: var(--text-base);
|
|
703
|
+
line-height: var(--leading-relaxed);
|
|
704
|
+
}
|
|
705
|
+
```
|