LaunchDarkly — Design System
LaunchDarkly pairs geometric Sora at 80px/700 with Söhne at 16px on charcoal #191919, then detonates lime #DDFF46 buttons against it — feature-flag risk management styled like a rave flyer for platform engineers. Product panels stack release, AI-config and observability UI in tight cards; the asymmetric bottom-rounded button corners are the tell that the system sweats details.
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/launchdarkly.
Tokens
LaunchDarkly's decoded design system: background #191919, text #ECECEE, accent #DDFF46, link #FF9D29, primary #DDFF46; type scale h1 80px / h2 64px / body 14px; 4px spacing base; 16px base radius. The single interactive/action color is #DDFF46 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #191919 |
| surface | #252525 |
| border | #383838 |
| text | #ECECEE |
| text_muted | #9B9B9D |
| primary | #DDFF46 |
| accent | #DDFF46 |
| link | #FF9D29 |
| secondary | #405BFF |
| button_bg | #DDFF46 |
| button_text | #191919 |
Using these colors
- Action color
#DDFF46— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#DDFF46— one role, not several (the action color).- accent
#DDFF46— 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
#FF9D29— inline text links and link-styled controls. - secondary
#405BFF— 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: Arial
- Body: Arial
- h1: 80px
- h2: 64px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 16px
- button: 12px
Per-section tokens (11)
Export: DESIGN.md
# LaunchDarkly — Design System > dark, modern, high, custom LaunchDarkly pairs geometric Sora at 80px/700 with Söhne at 16px on charcoal #191919, then detonates lime #DDFF46 buttons against it — feature-flag risk management styled like a rave flyer for platform engineers. Product panels stack release, AI-config and observability UI in tight cards; the asymmetric bottom-rounded button corners are the tell that the system sweats details. ## Colors | Role | Value | |------|-------| | bg | `#191919` | | surface | `#252525` | | border | `#383838` | | text | `#ECECEE` | | text_muted | `#9B9B9D` | | primary | `#DDFF46` | | accent | `#DDFF46` | | link | `#FF9D29` | | secondary | `#405BFF` | | button_bg | `#DDFF46` | | button_text | `#191919` | **Using these colors** - **Action color** `#DDFF46` — 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 `#DDFF46` — one role, not several (your action color). - **accent** `#DDFF46` — 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** `#FF9D29` — inline text links and link-styled controls. - **secondary** `#405BFF` — 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: **Arial** - Body: **Arial** - h1: 80px - h2: 64px - body: 14px > **Fonts —** Arial — system font, no web load needed. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 16px - button: 12px ## Primary button - bg `#DDFF46` · text `#191919` · radius 12px ## 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 #DDFF46 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #191919;
--color-surface: #252525;
--color-border: #383838;
--color-text: #ECECEE;
--color-text-muted: #9B9B9D;
--color-primary: #DDFF46; /* primary brand / action color. */
--color-accent: #DDFF46; /* 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: #FF9D29; /* inline text links and link-styled controls. */
--color-secondary: #405BFF; /* 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: #DDFF46; /* primary-button fill — the main call-to-action color. */
--color-button-text: #191919;
/* fonts: Arial — system font, no web load needed. */
--font-heading: "Arial", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Arial", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 80px;
--text-h2: 64px;
--text-body: 14px;
--radius-base: 16px;
--radius-button: 12px;
--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 #DDFF46 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #191919;
--surface: #252525;
--border: #383838;
--text: #ECECEE;
--text-muted: #9B9B9D;
--primary: #DDFF46; /* primary brand / action color. */
--accent: #DDFF46; /* 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: #FF9D29; /* inline text links and link-styled controls. */
--secondary: #405BFF; /* 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: #DDFF46; /* primary-button fill — the main call-to-action color. */
--button-text: #191919;
--font-heading: "Arial", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Arial", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 16px;
--radius-button: 12px;
}
/* fonts: Arial — system font, no web load needed. */