Miro — Design System
The full decoded design system for Miro: 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/miro.
Tokens
Miro's decoded design system: background #F0F0F0, text #0A0A0B, accent #3859FF, link #0000EE, primary #3859FF; type scale h1 56px / h2 48px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #3859FF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F0F0F0 |
| surface | #E2E2E2 |
| border | #CDCDCD |
| text | #0A0A0B |
| text_muted | #616162 |
| primary | #3859FF |
| accent | #3859FF |
| link | #0000EE |
| secondary | #FDE050 |
| button_bg | #3859FF |
| button_text | #FFFFFF |
Using these colors
- Action color
#3859FF— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#3859FF— one role, not several (the action color).- accent
#3859FF— 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
#0000EE— inline text links and link-styled controls. - secondary
#FDE050— 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: Roobert PRO Medium
- Body: Roobert PRO
- h1: 56px
- h2: 48px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 8px
Per-section tokens (8)
Export: DESIGN.md
# Miro — Design System > light, modern, high, tailwind ## Colors | Role | Value | |------|-------| | bg | `#F0F0F0` | | surface | `#E2E2E2` | | border | `#CDCDCD` | | text | `#0A0A0B` | | text_muted | `#616162` | | primary | `#3859FF` | | accent | `#3859FF` | | link | `#0000EE` | | secondary | `#FDE050` | | button_bg | `#3859FF` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#3859FF` — 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 `#3859FF` — one role, not several (your action color). - **accent** `#3859FF` — 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** `#0000EE` — inline text links and link-styled controls. - **secondary** `#FDE050` — 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: **Roobert PRO Medium** _(free fallback: Newsreader)_ - Body: **Roobert PRO** _(free fallback: Newsreader)_ - h1: 56px - h2: 48px - body: 16px > **Fonts —** Roobert PRO Medium may be proprietary — safe free fallback: Newsreader (Google Fonts). Roobert PRO may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 8px ## Primary button - bg `#3859FF` · 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 #3859FF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F0F0F0;
--color-surface: #E2E2E2;
--color-border: #CDCDCD;
--color-text: #0A0A0B;
--color-text-muted: #616162;
--color-primary: #3859FF; /* primary brand / action color. */
--color-accent: #3859FF; /* 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: #0000EE; /* inline text links and link-styled controls. */
--color-secondary: #FDE050; /* 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: #3859FF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Roobert PRO Medium may be proprietary — safe free fallback: Newsreader (Google Fonts). Roobert PRO may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Roobert PRO Medium", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Roobert PRO", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 56px;
--text-h2: 48px;
--text-body: 16px;
--radius-base: 8px;
--radius-button: 8px;
--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 #3859FF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F0F0F0;
--surface: #E2E2E2;
--border: #CDCDCD;
--text: #0A0A0B;
--text-muted: #616162;
--primary: #3859FF; /* primary brand / action color. */
--accent: #3859FF; /* 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: #0000EE; /* inline text links and link-styled controls. */
--secondary: #FDE050; /* 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: #3859FF; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Roobert PRO Medium", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Roobert PRO", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 8px;
}
/* fonts: Roobert PRO Medium may be proprietary — safe free fallback: Newsreader (Google Fonts). Roobert PRO may be proprietary — safe free fallback: Newsreader (Google Fonts). */