MozaikaDesign system

Deel — Design System

light · professional · medium · tailwind · confidence 92%

Deel hires globally in Bagoss: the Condensed cut at 60px/500 over world-map heroes, Bagoss Standard at 16-20px, and full-pill 200px-radius ink buttons. Compliance cards and payroll UI tile beneath in Deel blue — global employment made to feel like one coherent product, which is exactly the promise the single-family type system performs.

Open in Mozaika →

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/deel.

Tokens

Deel's decoded design system: background #FFFFFF, text #1B1B1B, accent #5938B7, link #B1D8FC, primary #5938B7; type scale h1 60px / h2 44px / body 16px; 4px spacing base; 16px base radius. The single interactive/action color is #5938B7 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F1F1F1
border#DCDCDC
text#1B1B1B
text_muted#717171
primary#5938B7
accent#5938B7
link#B1D8FC
secondary#FFCF25
button_bg#5938B7
button_text#0000EE

Using these colors

Typography

Spacing

Radii

Per-section tokens (9)

Export: DESIGN.md

# Deel — Design System

> light, professional, medium, tailwind

Deel hires globally in Bagoss: the Condensed cut at 60px/500 over world-map heroes, Bagoss Standard at 16-20px, and full-pill 200px-radius ink buttons. Compliance cards and payroll UI tile beneath in Deel blue — global employment made to feel like one coherent product, which is exactly the promise the single-family type system performs.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F1F1F1` |
| border | `#DCDCDC` |
| text | `#1B1B1B` |
| text_muted | `#717171` |
| primary | `#5938B7` |
| accent | `#5938B7` |
| link | `#B1D8FC` |
| secondary | `#FFCF25` |
| button_bg | `#5938B7` |
| button_text | `#0000EE` |

**Using these colors**

- **Action color** `#5938B7` — 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 `#5938B7` — one role, not several (your action color).
- **accent** `#5938B7` — 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** `#B1D8FC` — fails contrast on the background (~1.5:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).
- **secondary** `#FFCF25` — 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: **Bagoss Condensed** _(free fallback: Newsreader)_
- Body: **Bagoss Standard** _(free fallback: Newsreader)_
- h1: 60px
- h2: 44px
- body: 16px

> **Fonts —** Bagoss Condensed may be proprietary — safe free fallback: Newsreader (Google Fonts). Bagoss Standard may be proprietary — safe free fallback: Newsreader (Google Fonts).

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px

## Radius
- base: 16px
- button: 100px

## Primary button
- bg `#5938B7` · text `#0000EE` · radius 100px

## 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 #5938B7 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F1F1F1;
  --color-border: #DCDCDC;
  --color-text: #1B1B1B;
  --color-text-muted: #717171;
  --color-primary: #5938B7;  /* primary brand / action color. */
  --color-accent: #5938B7;  /* 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: #B1D8FC;  /* fails contrast on the background (~1.5:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --color-secondary: #FFCF25;  /* 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: #5938B7;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #0000EE;
  /* fonts: Bagoss Condensed may be proprietary — safe free fallback: Newsreader (Google Fonts). Bagoss Standard may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Bagoss Condensed", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Bagoss Standard", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 60px;
  --text-h2: 44px;
  --text-body: 16px;
  --radius-base: 16px;
  --radius-button: 100px;
  --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 #5938B7 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F1F1F1;
  --border: #DCDCDC;
  --text: #1B1B1B;
  --text-muted: #717171;
  --primary: #5938B7;  /* primary brand / action color. */
  --accent: #5938B7;  /* 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: #B1D8FC;  /* fails contrast on the background (~1.5:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #FFCF25;  /* 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: #5938B7;  /* primary-button fill — the main call-to-action color. */
  --button-text: #0000EE;
  --font-heading: "Bagoss Condensed", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Bagoss Standard", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-button: 100px;
}
/* fonts: Bagoss Condensed may be proprietary — safe free fallback: Newsreader (Google Fonts). Bagoss Standard may be proprietary — safe free fallback: Newsreader (Google Fonts). */