Convex — Design System
The full decoded design system for Convex: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.
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/convex.
Tokens
Convex's decoded design system: background #F6EEDB, text #141414, accent #DE5D33, link #444435, primary #F6EEDB; type scale h1 42px / h2 32px / body 18px; 4px spacing base; 0px base radius. The single interactive/action color is #DE5D33 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F6EEDB |
| surface | #E8E0CF |
| border | #D4CDBD |
| text | #141414 |
| text_muted | #69665F |
| primary | #F6EEDB |
| accent | #DE5D33 |
| link | #444435 |
| secondary | #ECE4D2 |
| button_bg | #DE5D33 |
| button_text | #FFFFFF |
Using these colors
- Action color
#DE5D33— the single interactive color; only on things you click or must notice, never large fills. accent,button_bgare all#DE5D33— one role, not several (the action color).- accent
#DE5D33— 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
#F6EEDB— a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #DE5D33). - link
#444435— inline text links and link-styled controls. - secondary
#ECE4D2— 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: GT America
- Body: GT America
- h1: 42px
- h2: 32px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 9999px
Per-section tokens (8)
- Banner — dark · bg #222222 · text #F1EAD8 · 1 col · left
- Hero — dark · bg #141514 · text #DDCDBA · 1 col · left
- Feature — light · bg #F7EEDD · text #292524 · 1 col · left
- Feature — dark · bg #2F2A29 · text #F6EDDD · 1 col · left
- Testimonial / Social Proof — dark · bg #292929 · text #F7EEDD · 1 col · left
- Integrations — light · bg #F7EEDD · text #161616 · 1 col · left
- CTA / Sign-up — dark · bg #141414 · text #6C5B54 · 1 col · left
- Footer — dark · bg #141414 · text #8A8B8A · 1 col · left
Export: DESIGN.md
# Convex — Design System > light, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#F6EEDB` | | surface | `#E8E0CF` | | border | `#D4CDBD` | | text | `#141414` | | text_muted | `#69665F` | | primary | `#F6EEDB` | | accent | `#DE5D33` | | link | `#444435` | | secondary | `#ECE4D2` | | button_bg | `#DE5D33` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#DE5D33` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `button_bg` are all `#DE5D33` — one role, not several (your action color). - **accent** `#DE5D33` — 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** `#F6EEDB` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #DE5D33). - **link** `#444435` — inline text links and link-styled controls. - **secondary** `#ECE4D2` — 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: **GT America** _(free fallback: Inter)_ - Body: **GT America** _(free fallback: Inter)_ - h1: 42px - h2: 32px - body: 18px > **Fonts —** GT America is proprietary — closest free match: Inter (Google). Load Inter; keep GT America first so licensed users still get it. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 0px - button: 9999px ## Primary button - bg `#DE5D33` · text `#FFFFFF` · radius 9999px ## 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 #DE5D33 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F6EEDB;
--color-surface: #E8E0CF;
--color-border: #D4CDBD;
--color-text: #141414;
--color-text-muted: #69665F;
--color-primary: #F6EEDB; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #DE5D33). */
--color-accent: #DE5D33; /* 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: #444435; /* inline text links and link-styled controls. */
--color-secondary: #ECE4D2; /* 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: #DE5D33; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: GT America is proprietary — closest free match: Inter (Google). Load Inter; keep GT America first so licensed users still get it. */
--font-heading: "GT America", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "GT America", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 42px;
--text-h2: 32px;
--text-body: 18px;
--radius-base: 0px;
--radius-button: 9999px;
--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 #DE5D33 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F6EEDB;
--surface: #E8E0CF;
--border: #D4CDBD;
--text: #141414;
--text-muted: #69665F;
--primary: #F6EEDB; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #DE5D33). */
--accent: #DE5D33; /* 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: #444435; /* inline text links and link-styled controls. */
--secondary: #ECE4D2; /* 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: #DE5D33; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "GT America", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "GT America", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 9999px;
}
/* fonts: GT America is proprietary — closest free match: Inter (Google). Load Inter; keep GT America first so licensed users still get it. */