MozaikaDesign system

Ashby — Design System

light · professional · medium · custom · confidence 90%

Ashby hires in TT Norms Pro at 72px on a tuned 575 weight, ink #141415 on paper #FCFCFE, with zero-radius text CTAs and structured product diagrams in muted jewel tones. Recruiting dashboards render as careful information design — an ATS whose typography performs the operational rigor it promises talent teams.

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

Tokens

Ashby's decoded design system: background #FCFCFE, text #717075, accent #1863DC, link #0000EE, primary #1863DC; type scale h1 72px / h2 16px / body 18px; 4px spacing base; 2px base radius. The single interactive/action color is #FCFCFE — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FCFCFE
surface#F3F3F5
border#E7E7E9
text#717075
text_muted#A5A5A9
primary#1863DC
accent#1863DC
link#0000EE
secondary#473BCE
button_bg#FCFCFE
button_text#FCFCFE

Using these colors

Typography

Spacing

Radii

Shadow

rgba(20, 20, 21, 0.16) 0px 0px 0px 1px inset, rgba(255, 255, 255, 0.2) 0px 1px 2px 0px inset

Per-section tokens (8)

Export: DESIGN.md

# Ashby — Design System

> light, professional, medium, custom

Ashby hires in TT Norms Pro at 72px on a tuned 575 weight, ink #141415 on paper #FCFCFE, with zero-radius text CTAs and structured product diagrams in muted jewel tones. Recruiting dashboards render as careful information design — an ATS whose typography performs the operational rigor it promises talent teams.

## Colors

| Role | Value |
|------|-------|
| bg | `#FCFCFE` |
| surface | `#F3F3F5` |
| border | `#E7E7E9` |
| text | `#717075` |
| text_muted | `#A5A5A9` |
| primary | `#1863DC` |
| accent | `#1863DC` |
| link | `#0000EE` |
| secondary | `#473BCE` |
| button_bg | `#FCFCFE` |
| button_text | `#FCFCFE` |

**Using these colors**

- **Action color** `#FCFCFE` — 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` are all `#1863DC` — one role, not several.
- **accent** `#1863DC` — accent for emphasis — keep it rare on the page.
- **link** `#0000EE` — inline text links and link-styled controls.
- **secondary** `#473BCE` — 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: **TTNormsPro** _(free fallback: Newsreader)_
- Body: **TTNormsPro** _(free fallback: Newsreader)_
- h1: 72px
- h2: 16px
- body: 18px

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

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

## Radius
- base: 2px
- button: 6px

## Primary button
- bg `#FCFCFE` · text `#FCFCFE` · radius 6px

## 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 #FCFCFE — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FCFCFE;
  --color-surface: #F3F3F5;
  --color-border: #E7E7E9;
  --color-text: #717075;
  --color-text-muted: #A5A5A9;
  --color-primary: #1863DC;  /* a brand color — but the call-to-action uses #FCFCFE, not this. */
  --color-accent: #1863DC;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #0000EE;  /* inline text links and link-styled controls. */
  --color-secondary: #473BCE;  /* 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: #FCFCFE;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FCFCFE;
  /* fonts: TTNormsPro may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "TTNormsPro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "TTNormsPro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 72px;
  --text-h2: 16px;
  --text-body: 18px;
  --radius-base: 2px;
  --radius-button: 6px;
  --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 #FCFCFE — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FCFCFE;
  --surface: #F3F3F5;
  --border: #E7E7E9;
  --text: #717075;
  --text-muted: #A5A5A9;
  --primary: #1863DC;  /* a brand color — but the call-to-action uses #FCFCFE, not this. */
  --accent: #1863DC;  /* accent for emphasis — keep it rare on the page. */
  --link: #0000EE;  /* inline text links and link-styled controls. */
  --secondary: #473BCE;  /* 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: #FCFCFE;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FCFCFE;
  --font-heading: "TTNormsPro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "TTNormsPro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 2px;
  --radius-button: 6px;
}
/* fonts: TTNormsPro may be proprietary — safe free fallback: Newsreader (Google Fonts). */