MozaikaDesign system

Milanote — Design System

dark · modern · medium · tailwind · confidence 92%

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

Tokens

Milanote's decoded design system: background #303B4B, text #ECECEE, accent #F4511C, link #303B4B, primary #F4511C; type scale h1 64px / h2 20px / body 28px; 8px spacing base; 0px base radius. The single interactive/action color is #F4511C — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#303B4B
surface#3B4554
border#4C5563
text#ECECEE
text_muted#A4A8B0
primary#F4511C
accent#F4511C
link#303B4B
secondary#46505F
button_bg#F4511C
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (10)

Export: DESIGN.md

# Milanote — Design System

> dark, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#303B4B` |
| surface | `#3B4554` |
| border | `#4C5563` |
| text | `#ECECEE` |
| text_muted | `#A4A8B0` |
| primary | `#F4511C` |
| accent | `#F4511C` |
| link | `#303B4B` |
| secondary | `#46505F` |
| button_bg | `#F4511C` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#F4511C` — 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 `#F4511C` — one role, not several (your action color).
- **accent** `#F4511C` — 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** `#303B4B` — fails contrast on the background (~1.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).
- **secondary** `#46505F` — 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: **Inter**
- Body: **Inter**
- h1: 64px
- h2: 20px
- body: 28px

> **Fonts —** Inter — free, on Google.

## Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px

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

## Primary button
- bg `#F4511C` · 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 #F4511C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #303B4B;
  --color-surface: #3B4554;
  --color-border: #4C5563;
  --color-text: #ECECEE;
  --color-text-muted: #A4A8B0;
  --color-primary: #F4511C;  /* primary brand / action color. */
  --color-accent: #F4511C;  /* 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: #303B4B;  /* fails contrast on the background (~1.0: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: #46505F;  /* 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: #F4511C;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Inter — free, on Google. */
  --font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 64px;
  --text-h2: 20px;
  --text-body: 28px;
  --radius-base: 0px;
  --radius-button: 6px;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 24px;
  --spacing-6: 32px;
  --spacing-7: 48px;
  --spacing-8: 64px;
}

Export: CSS variables

:root {
  /* action color #F4511C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #303B4B;
  --surface: #3B4554;
  --border: #4C5563;
  --text: #ECECEE;
  --text-muted: #A4A8B0;
  --primary: #F4511C;  /* primary brand / action color. */
  --accent: #F4511C;  /* 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: #303B4B;  /* fails contrast on the background (~1.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #46505F;  /* 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: #F4511C;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 6px;
}
/* fonts: Inter — free, on Google. */