MozaikaDesign system

Anytype — Design System

dark · modern · medium · tailwind · confidence 90%

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

Tokens

Anytype's decoded design system: background #000000, text #ECECEE, accent #3CD9B3, link #C1C8D1, primary #3CD9B3; type scale h1 18px / h2 88px / body 18px; 4px spacing base; 0px 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#0E0E0E
border#232323
text#ECECEE
text_muted#929293
primary#3CD9B3
accent#3CD9B3
link#C1C8D1
button_bg#000000
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (2)

Export: DESIGN.md

# Anytype — Design System

> dark, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#000000` |
| surface | `#0E0E0E` |
| border | `#232323` |
| text | `#ECECEE` |
| text_muted | `#929293` |
| primary | `#3CD9B3` |
| accent | `#3CD9B3` |
| link | `#C1C8D1` |
| 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.
- `primary`, `accent` are all `#3CD9B3` — one role, not several.
- **accent** `#3CD9B3` — accent for emphasis — keep it rare on the page.
- **link** `#C1C8D1` — reads as a neutral UI color, not a link accent — verify against the reference (action = #000000).

## Typography

- Heading: **Helvetica**
- Body: **Helvetica**
- h1: 18px
- h2: 88px
- body: 18px

> **Fonts —** Helvetica — system font, no web load needed.

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

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

## Primary button
- bg `#000000` · 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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #000000;
  --color-surface: #0E0E0E;
  --color-border: #232323;
  --color-text: #ECECEE;
  --color-text-muted: #929293;
  --color-primary: #3CD9B3;  /* a brand color — but the call-to-action uses #000000, not this. */
  --color-accent: #3CD9B3;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #C1C8D1;  /* reads as a neutral UI color, not a link accent — verify against the reference (action = #000000). */
  --color-button-bg: #000000;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Helvetica — system font, no web load needed. */
  --font-heading: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 18px;
  --text-h2: 88px;
  --text-body: 18px;
  --radius-base: 0px;
  --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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #000000;
  --surface: #0E0E0E;
  --border: #232323;
  --text: #ECECEE;
  --text-muted: #929293;
  --primary: #3CD9B3;  /* a brand color — but the call-to-action uses #000000, not this. */
  --accent: #3CD9B3;  /* accent for emphasis — keep it rare on the page. */
  --link: #C1C8D1;  /* reads as a neutral UI color, not a link accent — verify against the reference (action = #000000). */
  --button-bg: #000000;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 6px;
}
/* fonts: Helvetica — system font, no web load needed. */