Instant — Design System
The full decoded design system for Instant: 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/instant.
Tokens
Instant's decoded design system: background #FBF9F6, text #333333, accent #F54900, link #6A7282, primary #F54900; type scale h1 48px / h2 48px / body 20px; 12px spacing base; 0px base radius. The single interactive/action color is #F54900 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FBF9F6 |
| surface | #EFEDEA |
| border | #DDDBD8 |
| text | #333333 |
| text_muted | #7F7E7D |
| primary | #F54900 |
| accent | #F54900 |
| link | #6A7282 |
| secondary | #364153 |
| button_bg | #F54900 |
| button_text | #FFFFFF |
Using these colors
- Action color
#F54900— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#F54900— one role, not several (the action color).- accent
#F54900— 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
#6A7282— reads as a neutral UI color, not a link accent — verify against the reference (action = #F54900). - secondary
#364153— 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: Switzer
- Body: Switzer
- h1: 48px
- h2: 48px
- body: 20px
Spacing
- base unit: 12px
- scale: 6px, 12px, 18px, 24px, 36px, 48px, 72px, 96px
Radii
- base: 0px
- button: 8px
Per-section tokens (9)
Export: DESIGN.md
# Instant — Design System > light, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#FBF9F6` | | surface | `#EFEDEA` | | border | `#DDDBD8` | | text | `#333333` | | text_muted | `#7F7E7D` | | primary | `#F54900` | | accent | `#F54900` | | link | `#6A7282` | | secondary | `#364153` | | button_bg | `#F54900` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#F54900` — 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`, `button_bg` are all `#F54900` — one role, not several (your action color). - **accent** `#F54900` — 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** `#6A7282` — reads as a neutral UI color, not a link accent — verify against the reference (action = #F54900). - **secondary** `#364153` — 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: **Switzer** - Body: **Switzer** - h1: 48px - h2: 48px - body: 20px > **Fonts —** Switzer — free, on Fontshare. ## Spacing - base unit: 12px - scale: 6px, 12px, 18px, 24px, 36px, 48px, 72px, 96px ## Radius - base: 0px - button: 8px ## Primary button - bg `#F54900` · text `#FFFFFF` · radius 8px ## 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 #F54900 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FBF9F6;
--color-surface: #EFEDEA;
--color-border: #DDDBD8;
--color-text: #333333;
--color-text-muted: #7F7E7D;
--color-primary: #F54900; /* primary brand / action color. */
--color-accent: #F54900; /* 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: #6A7282; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #F54900). */
--color-secondary: #364153; /* 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: #F54900; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Switzer — free, on Fontshare. */
--font-heading: "Switzer", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Switzer", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 48px;
--text-h2: 48px;
--text-body: 20px;
--radius-base: 0px;
--radius-button: 8px;
--spacing-1: 6px;
--spacing-2: 12px;
--spacing-3: 18px;
--spacing-4: 24px;
--spacing-5: 36px;
--spacing-6: 48px;
--spacing-7: 72px;
--spacing-8: 96px;
}Export: CSS variables
:root {
/* action color #F54900 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FBF9F6;
--surface: #EFEDEA;
--border: #DDDBD8;
--text: #333333;
--text-muted: #7F7E7D;
--primary: #F54900; /* primary brand / action color. */
--accent: #F54900; /* 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: #6A7282; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #F54900). */
--secondary: #364153; /* 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: #F54900; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Switzer", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Switzer", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 8px;
}
/* fonts: Switzer — free, on Fontshare. */