Nomad — Design System
The full decoded design system for Nomad: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.
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/nomad.
Tokens
Nomad's decoded design system: background #F3F3F3, text #000000, accent #000000, link #000000, primary #000000; type scale h1 77px / h2 56px / body 14px; 4px spacing base; 0px base radius. The single interactive/action color is #000000 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F3F3F3 |
| surface | #E4E4E4 |
| border | #CECECE |
| text | #000000 |
| text_muted | #5C5C5C |
| primary | #000000 |
| accent | #000000 |
| link | #000000 |
Using these colors
- Action color
#000000— the single interactive color; only on things you click or must notice, never large fills. primary,accent,linkare all#000000— one role, not several (the action color).- accent
#000000— THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed.
Typography
- Heading: Gotham-Bold
- Body: Gotham-Book
- h1: 77px
- h2: 56px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 0px
Per-section tokens (11)
- Hero
- Gallery / Showcase
- Testimonial / Social Proof
- Feature
- Feature
- Feature
- Testimonial / Social Proof
- Gallery / Showcase
- Feature
- Feature
- Footer
Export: DESIGN.md
# Nomad — Design System > light, modern, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#F3F3F3` | | surface | `#E4E4E4` | | border | `#CECECE` | | text | `#000000` | | text_muted | `#5C5C5C` | | primary | `#000000` | | accent | `#000000` | | link | `#000000` | **Using these colors** - **Action color** `#000000` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `primary`, `accent`, `link` are all `#000000` — one role, not several (your action color). - **accent** `#000000` — THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. ## Typography - Heading: **Gotham-Bold** _(free fallback: Newsreader)_ - Body: **Gotham-Book** _(free fallback: Newsreader)_ - h1: 77px - h2: 56px - body: 14px > **Fonts —** Gotham-Bold may be proprietary — safe free fallback: Newsreader (Google Fonts). Gotham-Book may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 0px - button: 0px ## Primary button - bg `None` · text `None` · radius None ## 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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F3F3F3;
--color-surface: #E4E4E4;
--color-border: #CECECE;
--color-text: #000000;
--color-text-muted: #5C5C5C;
--color-primary: #000000; /* ≈ the text color — a foreground/text color, not an action color (action = #000000). */
--color-accent: #000000; /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
--color-link: #000000; /* inline text links — shares the action color. */
/* fonts: Gotham-Bold may be proprietary — safe free fallback: Newsreader (Google Fonts). Gotham-Book may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Gotham-Bold", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Gotham-Book", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 77px;
--text-h2: 56px;
--text-body: 14px;
--radius-base: 0px;
--radius-button: 0px;
--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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F3F3F3;
--surface: #E4E4E4;
--border: #CECECE;
--text: #000000;
--text-muted: #5C5C5C;
--primary: #000000; /* ≈ the text color — a foreground/text color, not an action color (action = #000000). */
--accent: #000000; /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
--link: #000000; /* inline text links — shares the action color. */
--font-heading: "Gotham-Bold", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Gotham-Book", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 0px;
}
/* fonts: Gotham-Bold may be proprietary — safe free fallback: Newsreader (Google Fonts). Gotham-Book may be proprietary — safe free fallback: Newsreader (Google Fonts). */