Twelve Labs — Design System
The full decoded design system for Twelve Labs: 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/twelve-labs.
Tokens
Twelve Labs's decoded design system: background #F5F5F5, text #1D1C1B, accent #5864ED, link #5864ED, primary #0000EE; type scale h1 48px / h2 48px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #F4F3F3 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F5F5F5 |
| surface | #E8E7E7 |
| border | #D4D4D4 |
| text | #1D1C1B |
| text_muted | #6F6E6D |
| primary | #0000EE |
| accent | #5864ED |
| link | #5864ED |
| secondary | #30710E |
| button_bg | #F4F3F3 |
| button_text | #0000EE |
Using these colors
- Action color
#F4F3F3— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#5864ED— one role, not several (the action color).- accent
#5864ED— accent for emphasis — keep it rare on the page. - primary
#0000EE— a brand color — but the call-to-action uses #F4F3F3, not this. - secondary
#30710E— 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: Helvetica
- Body: Helvetica
- h1: 48px
- h2: 48px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 14px
Per-section tokens (11)
- Hero
- Feature
- Feature
- Stats / Metrics
- Logo Wall
- Gallery / Showcase
- Feature
- Feature
- Testimonial / Social Proof
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Twelve Labs — Design System > light, modern, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#F5F5F5` | | surface | `#E8E7E7` | | border | `#D4D4D4` | | text | `#1D1C1B` | | text_muted | `#6F6E6D` | | primary | `#0000EE` | | accent | `#5864ED` | | link | `#5864ED` | | secondary | `#30710E` | | button_bg | `#F4F3F3` | | button_text | `#0000EE` | **Using these colors** - **Action color** `#F4F3F3` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `link` are all `#5864ED` — one role, not several. - **accent** `#5864ED` — accent for emphasis — keep it rare on the page. - **primary** `#0000EE` — a brand color — but the call-to-action uses #F4F3F3, not this. - **secondary** `#30710E` — 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: **Helvetica** - Body: **Helvetica** - h1: 48px - h2: 48px - body: 16px > **Fonts —** Helvetica — system font, no web load needed. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 14px ## Primary button - bg `#F4F3F3` · text `#0000EE` · radius 14px ## 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 #F4F3F3 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F5F5F5;
--color-surface: #E8E7E7;
--color-border: #D4D4D4;
--color-text: #1D1C1B;
--color-text-muted: #6F6E6D;
--color-primary: #0000EE; /* a brand color — but the call-to-action uses #F4F3F3, not this. */
--color-accent: #5864ED; /* accent for emphasis — keep it rare on the page. */
--color-link: #5864ED; /* inline text links and link-styled controls. */
--color-secondary: #30710E; /* 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: #F4F3F3; /* primary-button fill — the main call-to-action color. */
--color-button-text: #0000EE;
/* 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: 48px;
--text-h2: 48px;
--text-body: 16px;
--radius-base: 8px;
--radius-button: 14px;
--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 #F4F3F3 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F5F5F5;
--surface: #E8E7E7;
--border: #D4D4D4;
--text: #1D1C1B;
--text-muted: #6F6E6D;
--primary: #0000EE; /* a brand color — but the call-to-action uses #F4F3F3, not this. */
--accent: #5864ED; /* accent for emphasis — keep it rare on the page. */
--link: #5864ED; /* inline text links and link-styled controls. */
--secondary: #30710E; /* 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: #F4F3F3; /* primary-button fill — the main call-to-action color. */
--button-text: #0000EE;
--font-heading: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Helvetica", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 14px;
}
/* fonts: Helvetica — system font, no web load needed. */