MozaikaDesign system

Appwrite — Design System

dark · modern · medium · tailwind · confidence 92%

Appwrite codes its brand for the dark IDE: Aeonik Pro at 72px/400 with gradient-filled letterforms ending in a terminal underscore ('...than ever_'), Inter at 16px, and its signature pink #FD366E accents on #19191C. Console panels and SDK grids glow like syntax highlighting — an open-source backend that styles itself as the editor its users live in.

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

Tokens

Appwrite's decoded design system: background #19191C, text #ECECEE, accent #85DBD8, link #85DBD8, primary #2B1B23; type scale h1 72px / h2 16px / body 14px; 4px spacing base; 8px base radius. The single interactive/action color is #FFFFFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#19191C
surface#252528
border#38383B
text#ECECEE
text_muted#9B9B9E
primary#2B1B23
accent#85DBD8
link#85DBD8
secondary#301C24
button_bg#FFFFFF
button_text#19191C

Using these colors

Typography

Spacing

Radii

Per-section tokens (11)

Export: DESIGN.md

# Appwrite — Design System

> dark, modern, medium, tailwind

Appwrite codes its brand for the dark IDE: Aeonik Pro at 72px/400 with gradient-filled letterforms ending in a terminal underscore ('...than ever_'), Inter at 16px, and its signature pink #FD366E accents on #19191C. Console panels and SDK grids glow like syntax highlighting — an open-source backend that styles itself as the editor its users live in.

## Colors

| Role | Value |
|------|-------|
| bg | `#19191C` |
| surface | `#252528` |
| border | `#38383B` |
| text | `#ECECEE` |
| text_muted | `#9B9B9E` |
| primary | `#2B1B23` |
| accent | `#85DBD8` |
| link | `#85DBD8` |
| secondary | `#301C24` |
| button_bg | `#FFFFFF` |
| button_text | `#19191C` |

**Using these colors**

- **Action color** `#FFFFFF` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary` `#2B1B23`, `secondary` `#301C24` are visually the same color (Δ7) — treat as one role.
- `accent`, `link` are all `#85DBD8` — one role, not several.
- **accent** `#85DBD8` — accent for emphasis — keep it rare on the page.

## Typography

- Heading: **Inter**
- Body: **Inter**
- h1: 72px
- h2: 16px
- body: 14px

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

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

## Radius
- base: 8px
- button: 8px

## Primary button
- bg `#FFFFFF` · text `#19191C` · radius 8px

## 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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #19191C;
  --color-surface: #252528;
  --color-border: #38383B;
  --color-text: #ECECEE;
  --color-text-muted: #9B9B9E;
  --color-primary: #2B1B23;  /* a brand color — but the call-to-action uses #FFFFFF, not this. */
  --color-accent: #85DBD8;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #85DBD8;  /* inline text links and link-styled controls. */
  --color-secondary: #301C24;  /* 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: #FFFFFF;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #19191C;
  /* 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: 72px;
  --text-h2: 16px;
  --text-body: 14px;
  --radius-base: 8px;
  --radius-button: 8px;
  --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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #19191C;
  --surface: #252528;
  --border: #38383B;
  --text: #ECECEE;
  --text-muted: #9B9B9E;
  --primary: #2B1B23;  /* a brand color — but the call-to-action uses #FFFFFF, not this. */
  --accent: #85DBD8;  /* accent for emphasis — keep it rare on the page. */
  --link: #85DBD8;  /* inline text links and link-styled controls. */
  --secondary: #301C24;  /* 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: #FFFFFF;  /* primary-button fill — the main call-to-action color. */
  --button-text: #19191C;
  --font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 8px;
}
/* fonts: Inter — free, on Google. */