Synthesia — Design System
The full decoded design system for Synthesia: 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/synthesia.
Tokens
Synthesia's decoded design system: background #FFFFFF, text #333B52, accent #3E57DA, link #333B52, primary #3E57DA; type scale h1 105.6px / h2 67.2px / body 19.2px; 12px spacing base; 0px base radius. The single interactive/action color is #3E57DA — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F2F3F4 |
| border | #E0E1E5 |
| text | #333B52 |
| text_muted | #808593 |
| primary | #3E57DA |
| accent | #3E57DA |
| link | #333B52 |
| secondary | #0D0F2C |
| button_bg | #3E57DA |
| button_text | #FFFFFF |
Using these colors
- Action color
#3E57DA— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#3E57DA— one role, not several (the action color).- accent
#3E57DA— 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
#333B52— inline text links and link-styled controls. - secondary
#0D0F2C— 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: Basiersquare Webfont
- Body: Basiersquare Webfont
- h1: 105.6px
- h2: 67.2px
- body: 19.2px
Spacing
- base unit: 12px
- scale: 6px, 12px, 18px, 24px, 36px, 48px, 72px, 96px
Radii
- base: 0px
- button: 12px
Shadow
rgba(16, 24, 40, 0.08) 0px 2px 10px 0px
Export: DESIGN.md
# Synthesia — Design System > light, modern, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F2F3F4` | | border | `#E0E1E5` | | text | `#333B52` | | text_muted | `#808593` | | primary | `#3E57DA` | | accent | `#3E57DA` | | link | `#333B52` | | secondary | `#0D0F2C` | | button_bg | `#3E57DA` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#3E57DA` — 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 `#3E57DA` — one role, not several (your action color). - **accent** `#3E57DA` — 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** `#333B52` — inline text links and link-styled controls. - **secondary** `#0D0F2C` — 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: **Basiersquare Webfont** _(free fallback: Newsreader)_ - Body: **Basiersquare Webfont** _(free fallback: Newsreader)_ - h1: 105.6px - h2: 67.2px - body: 19.2px > **Fonts —** Basiersquare Webfont may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 12px - scale: 6px, 12px, 18px, 24px, 36px, 48px, 72px, 96px ## Radius - base: 0px - button: 12px ## Primary button - bg `#3E57DA` · text `#FFFFFF` · radius 12px ## 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 #3E57DA — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F2F3F4;
--color-border: #E0E1E5;
--color-text: #333B52;
--color-text-muted: #808593;
--color-primary: #3E57DA; /* primary brand / action color. */
--color-accent: #3E57DA; /* 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: #333B52; /* inline text links and link-styled controls. */
--color-secondary: #0D0F2C; /* 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: #3E57DA; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Basiersquare Webfont may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Basiersquare Webfont", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Basiersquare Webfont", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 105.6px;
--text-h2: 67.2px;
--text-body: 19.2px;
--radius-base: 0px;
--radius-button: 12px;
--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 #3E57DA — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F2F3F4;
--border: #E0E1E5;
--text: #333B52;
--text-muted: #808593;
--primary: #3E57DA; /* primary brand / action color. */
--accent: #3E57DA; /* 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: #333B52; /* inline text links and link-styled controls. */
--secondary: #0D0F2C; /* 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: #3E57DA; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Basiersquare Webfont", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Basiersquare Webfont", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 12px;
}
/* fonts: Basiersquare Webfont may be proprietary — safe free fallback: Newsreader (Google Fonts). */