MozaikaDesign system

Muse — Design System

light · modern · medium · custom · confidence 92%

The full decoded design system for Muse: 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/muse.

Tokens

Muse's decoded design system: background #F9F7F4, text #000000, accent #F6953C, link #803EDE, primary #422B59; type scale h1 87.97px / h2 62.13px / body 31.052px; 4px spacing base; 6px base radius. The single interactive/action color is #F6953C — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F9F7F4
surface#EAE8E5
border#D3D1CF
text#000000
text_muted#5E5D5C
primary#422B59
accent#F6953C
link#803EDE
secondary#F6953C
button_bg#F6953C
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Shadow

rgba(0, 0, 0, 0.1) 0px 0px 4px 0px

Per-section tokens (16)

Export: DESIGN.md

# Muse — Design System

> light, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#F9F7F4` |
| surface | `#EAE8E5` |
| border | `#D3D1CF` |
| text | `#000000` |
| text_muted | `#5E5D5C` |
| primary | `#422B59` |
| accent | `#F6953C` |
| link | `#803EDE` |
| secondary | `#F6953C` |
| button_bg | `#F6953C` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#F6953C` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `accent`, `secondary`, `button_bg` are all `#F6953C` — one role, not several (your action color).
- **accent** `#F6953C` — 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.
- **primary** `#422B59` — a brand color — but the call-to-action uses #F6953C, not this.
- **link** `#803EDE` — inline text links and link-styled controls.

## Typography

- Heading: **Marat Sans** _(free fallback: Newsreader)_
- Body: **Marat Sans** _(free fallback: Newsreader)_
- h1: 87.97px
- h2: 62.13px
- body: 31.052px

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

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

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

## Primary button
- bg `#F6953C` · text `#FFFFFF` · 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 #F6953C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F9F7F4;
  --color-surface: #EAE8E5;
  --color-border: #D3D1CF;
  --color-text: #000000;
  --color-text-muted: #5E5D5C;
  --color-primary: #422B59;  /* a brand color — but the call-to-action uses #F6953C, not this. */
  --color-accent: #F6953C;  /* 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: #803EDE;  /* inline text links and link-styled controls. */
  --color-secondary: #F6953C;  /* same color as the action (see accent). */
  --color-button-bg: #F6953C;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Marat Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Marat Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Marat Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 87.97px;
  --text-h2: 62.13px;
  --text-body: 31.052px;
  --radius-base: 6px;
  --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 #F6953C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F9F7F4;
  --surface: #EAE8E5;
  --border: #D3D1CF;
  --text: #000000;
  --text-muted: #5E5D5C;
  --primary: #422B59;  /* a brand color — but the call-to-action uses #F6953C, not this. */
  --accent: #F6953C;  /* 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: #803EDE;  /* inline text links and link-styled controls. */
  --secondary: #F6953C;  /* same color as the action (see accent). */
  --button-bg: #F6953C;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Marat Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Marat Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 6px;
  --radius-button: 6px;
}
/* fonts: Marat Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */