MozaikaDesign system

TickTick — Design System

light · modern · medium · custom · confidence 92%

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

Tokens

TickTick's decoded design system: background #FFFFFF, text #191919, accent #4772FA, link #6C8EFB, primary #4772FA; type scale h1 52px / h2 36px / body 28px; 8px spacing base; 0px base radius. The single interactive/action color is #4772FA — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F1F1F1
border#DCDCDC
text#191919
text_muted#707070
primary#4772FA
accent#4772FA
link#6C8EFB
button_bg#4772FA
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (14)

Export: DESIGN.md

# TickTick — Design System

> light, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F1F1F1` |
| border | `#DCDCDC` |
| text | `#191919` |
| text_muted | `#707070` |
| primary | `#4772FA` |
| accent | `#4772FA` |
| link | `#6C8EFB` |
| button_bg | `#4772FA` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#4772FA` — 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 `#4772FA` — one role, not several (your action color).
- **accent** `#4772FA` — 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** `#6C8EFB` — inline text links and link-styled controls.

## Typography

- Heading: **Segoe UI** _(free fallback: Newsreader)_
- Body: **Roboto**
- h1: 52px
- h2: 36px
- body: 28px

> **Fonts —** Segoe UI may be proprietary — safe free fallback: Newsreader (Google Fonts). Roboto — free, on Google.

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

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

## Primary button
- bg `#4772FA` · text `#FFFFFF` · radius 999px

## 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 #4772FA — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F1F1F1;
  --color-border: #DCDCDC;
  --color-text: #191919;
  --color-text-muted: #707070;
  --color-primary: #4772FA;  /* primary brand / action color. */
  --color-accent: #4772FA;  /* 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: #6C8EFB;  /* inline text links and link-styled controls. */
  --color-button-bg: #4772FA;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Segoe UI may be proprietary — safe free fallback: Newsreader (Google Fonts). Roboto — free, on Google. */
  --font-heading: "Segoe UI", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 52px;
  --text-h2: 36px;
  --text-body: 28px;
  --radius-base: 0px;
  --radius-button: 999px;
  --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 #4772FA — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F1F1F1;
  --border: #DCDCDC;
  --text: #191919;
  --text-muted: #707070;
  --primary: #4772FA;  /* primary brand / action color. */
  --accent: #4772FA;  /* 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: #6C8EFB;  /* inline text links and link-styled controls. */
  --button-bg: #4772FA;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Segoe UI", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 999px;
}
/* fonts: Segoe UI may be proprietary — safe free fallback: Newsreader (Google Fonts). Roboto — free, on Google. */