Missive — Design System
Missive dresses team email in editorial serif: Tiempos Headline at 56px/400 in soft ink #34363A, Inter at 18-20px for the workflow copy, quiet 8px-radius buttons. Shared-inbox UI in warm neutrals does the demonstrating — the serif signals that email is writing, and writing deserves a newspaper face.
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/missive.
Tokens
Missive's decoded design system: background #FFFFFF, text #34363A, accent #2266ED, link #3898EC, primary #2266ED; type scale h1 56px / h2 30px / body 18px; 4px spacing base; 8px base radius. The single interactive/action color is #2266ED — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F2F2F3 |
| border | #E0E0E1 |
| text | #34363A |
| text_muted | #818284 |
| primary | #2266ED |
| accent | #2266ED |
| link | #3898EC |
| secondary | #0082F3 |
| button_bg | #2266ED |
| button_text | #FFFFFF |
Using these colors
- Action color
#2266ED— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#2266ED— one role, not several (the action color).- accent
#2266ED— 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
#3898EC— inline text links and link-styled controls. - secondary
#0082F3— 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: Tiempos Headline
- Body: Inter
- h1: 56px
- h2: 30px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 8px
Per-section tokens (10)
Export: DESIGN.md
# Missive — Design System > light, modern, medium, custom Missive dresses team email in editorial serif: Tiempos Headline at 56px/400 in soft ink #34363A, Inter at 18-20px for the workflow copy, quiet 8px-radius buttons. Shared-inbox UI in warm neutrals does the demonstrating — the serif signals that email is writing, and writing deserves a newspaper face. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F2F2F3` | | border | `#E0E0E1` | | text | `#34363A` | | text_muted | `#818284` | | primary | `#2266ED` | | accent | `#2266ED` | | link | `#3898EC` | | secondary | `#0082F3` | | button_bg | `#2266ED` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#2266ED` — 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 `#2266ED` — one role, not several (your action color). - **accent** `#2266ED` — 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** `#3898EC` — inline text links and link-styled controls. - **secondary** `#0082F3` — 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: **Tiempos Headline** _(free fallback: Newsreader)_ - Body: **Inter** - h1: 56px - h2: 30px - body: 18px > **Fonts —** Tiempos Headline 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: 8px - button: 8px ## Primary button - bg `#2266ED` · 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 #2266ED — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F2F2F3;
--color-border: #E0E0E1;
--color-text: #34363A;
--color-text-muted: #818284;
--color-primary: #2266ED; /* primary brand / action color. */
--color-accent: #2266ED; /* 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: #3898EC; /* inline text links and link-styled controls. */
--color-secondary: #0082F3; /* 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: #2266ED; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Tiempos Headline may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */
--font-heading: "Tiempos Headline", "Newsreader", Georgia, 'Times New Roman', serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 56px;
--text-h2: 30px;
--text-body: 18px;
--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 #2266ED — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F2F2F3;
--border: #E0E0E1;
--text: #34363A;
--text-muted: #818284;
--primary: #2266ED; /* primary brand / action color. */
--accent: #2266ED; /* 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: #3898EC; /* inline text links and link-styled controls. */
--secondary: #0082F3; /* 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: #2266ED; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Tiempos Headline", "Newsreader", Georgia, 'Times New Roman', serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 8px;
}
/* fonts: Tiempos Headline may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */