MozaikaDesign system

Fey — Design System

dark · professional · medium · custom · confidence 90%

The full decoded design system for Fey: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.

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

Tokens

Fey's decoded design system: background #000000, text #868F97, accent #479FFA, link #479FFA, primary #868F97; type scale h1 54px / h2 26px / body 14px; 12px spacing base; 14px base radius. The single interactive/action color is #000000 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#000000
surface#080809
border#141516
text#868F97
text_muted#53585D
primary#868F97
accent#479FFA
link#479FFA
secondary#D88036
button_bg#000000
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Shadow

rgba(0, 0, 0, 0.12) 0px 30.0444px 16.2444px 0px, rgba(0, 0, 0, 0.07) 0px 15.6px 8.2875px 0px, rgba(0, 0, 0, 0.04) 0px 6.35556px 4.15556px 0px

Per-section tokens (10)

Export: DESIGN.md

# Fey — Design System

> dark, professional, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#000000` |
| surface | `#080809` |
| border | `#141516` |
| text | `#868F97` |
| text_muted | `#53585D` |
| primary | `#868F97` |
| accent | `#479FFA` |
| link | `#479FFA` |
| secondary | `#D88036` |
| button_bg | `#000000` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#000000` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `accent`, `link` are all `#479FFA` — one role, not several.
- **accent** `#479FFA` — accent for emphasis — keep it rare on the page.
- **primary** `#868F97` — ≈ the text color — a foreground/text color, not an action color (action = #000000).
- **secondary** `#D88036` — 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: **Calibre** _(free fallback: Newsreader)_
- Body: **Calibre** _(free fallback: Newsreader)_
- h1: 54px
- h2: 26px
- body: 14px

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

## Spacing
- base unit: 12px
- scale: 6px, 12px, 18px, 24px, 36px, 48px, 72px, 96px

## Radius
- base: 14px
- button: 99px

## Primary button
- bg `#000000` · text `#FFFFFF` · radius 99px

## 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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #000000;
  --color-surface: #080809;
  --color-border: #141516;
  --color-text: #868F97;
  --color-text-muted: #53585D;
  --color-primary: #868F97;  /* ≈ the text color — a foreground/text color, not an action color (action = #000000). */
  --color-accent: #479FFA;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #479FFA;  /* inline text links and link-styled controls. */
  --color-secondary: #D88036;  /* 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: #000000;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Calibre may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Calibre", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Calibre", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 54px;
  --text-h2: 26px;
  --text-body: 14px;
  --radius-base: 14px;
  --radius-button: 99px;
  --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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #000000;
  --surface: #080809;
  --border: #141516;
  --text: #868F97;
  --text-muted: #53585D;
  --primary: #868F97;  /* ≈ the text color — a foreground/text color, not an action color (action = #000000). */
  --accent: #479FFA;  /* accent for emphasis — keep it rare on the page. */
  --link: #479FFA;  /* inline text links and link-styled controls. */
  --secondary: #D88036;  /* 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: #000000;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Calibre", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Calibre", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 14px;
  --radius-button: 99px;
}
/* fonts: Calibre may be proprietary — safe free fallback: Newsreader (Google Fonts). */