Mintlify — Design System
Mintlify frames documentation as knowledge infrastructure: Arizona Flare's flared serifs give the 50px hero a literary confidence, while Inter runs the 16px working text and 4px-radius near-black buttons keep the chrome technical. Docs screenshots sit like plates in a printed manual — a docs company that clearly reads its own typography.
This is a static, crawlable rendering for search & AI engines. The interactive version — filters, live decode console, copy & export — is at https://mozaika.design/ds/mintlify.
Tokens
Mintlify's decoded design system: background #FFFFFF, text #08090A, accent #EF6333, link #EF6333, primary #FF7A59; type scale h1 50px / h2 36px / body 16px; 4px spacing base; 4px base radius. The single interactive/action color is #08090A — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F0F0F0 |
| border | #D9DADA |
| text | #08090A |
| text_muted | #656667 |
| primary | #FF7A59 |
| accent | #EF6333 |
| link | #EF6333 |
| secondary | #00A8E0 |
| button_bg | #08090A |
| button_text | #FFFFFF |
Using these colors
- Action color
#08090A— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#EF6333— one role, not several (the action color).- accent
#EF6333— accent for emphasis — keep it rare on the page. - primary
#FF7A59— a brand color — but the call-to-action uses #08090A, not this. - secondary
#00A8E0— optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two.
Typography
- Heading: Arizona Flare
- Body: Inter
- h1: 50px
- h2: 36px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 4px
- button: 4px
Per-section tokens (18)
- Hero
- Hero
- Logo Wall
- Pricing / Plans
- Bento Grid
- Logo Wall
- Gallery / Showcase
- Stats / Metrics
- Stats / Metrics
- Comparison
- Gallery / Showcase
- FAQ
- Testimonial / Social Proof
- Gallery / Showcase
- Gallery / Showcase
- CTA / Sign-up
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Mintlify — Design System > light, modern, medium, tailwind Mintlify frames documentation as knowledge infrastructure: Arizona Flare's flared serifs give the 50px hero a literary confidence, while Inter runs the 16px working text and 4px-radius near-black buttons keep the chrome technical. Docs screenshots sit like plates in a printed manual — a docs company that clearly reads its own typography. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F0` | | border | `#D9DADA` | | text | `#08090A` | | text_muted | `#656667` | | primary | `#FF7A59` | | accent | `#EF6333` | | link | `#EF6333` | | secondary | `#00A8E0` | | button_bg | `#08090A` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#08090A` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `link` are all `#EF6333` — one role, not several. - **accent** `#EF6333` — accent for emphasis — keep it rare on the page. - **primary** `#FF7A59` — a brand color — but the call-to-action uses #08090A, not this. - **secondary** `#00A8E0` — optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. ## Typography - Heading: **Arizona Flare** _(free fallback: Newsreader)_ - Body: **Inter** - h1: 50px - h2: 36px - body: 16px > **Fonts —** Arizona Flare may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 4px - button: 4px ## Primary button - bg `#08090A` · text `#FFFFFF` · radius 4px ## How to apply Paste the Tailwind `@theme` (or CSS variables) as your base, then build each section to its spec — verify every color, radius, and font against these tokens.
Export: Tailwind v4 (@theme)
@theme {
/* action color #08090A — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #D9DADA;
--color-text: #08090A;
--color-text-muted: #656667;
--color-primary: #FF7A59; /* a brand color — but the call-to-action uses #08090A, not this. */
--color-accent: #EF6333; /* accent for emphasis — keep it rare on the page. */
--color-link: #EF6333; /* inline text links and link-styled controls. */
--color-secondary: #00A8E0; /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
--color-button-bg: #08090A; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Arizona Flare may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */
--font-heading: "Arizona Flare", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 50px;
--text-h2: 36px;
--text-body: 16px;
--radius-base: 4px;
--radius-button: 4px;
--spacing-1: 2px;
--spacing-2: 4px;
--spacing-3: 6px;
--spacing-4: 8px;
--spacing-5: 12px;
--spacing-6: 16px;
--spacing-7: 24px;
--spacing-8: 32px;
}Export: CSS variables
:root {
/* action color #08090A — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #D9DADA;
--text: #08090A;
--text-muted: #656667;
--primary: #FF7A59; /* a brand color — but the call-to-action uses #08090A, not this. */
--accent: #EF6333; /* accent for emphasis — keep it rare on the page. */
--link: #EF6333; /* inline text links and link-styled controls. */
--secondary: #00A8E0; /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
--button-bg: #08090A; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Arizona Flare", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 4px;
--radius-button: 4px;
}
/* fonts: Arizona Flare may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */