Unkey — Design System
Unkey secures APIs in blackout: Articulat CF at 64px/400 white on #040406, Inter at 16px, and sharp zero-radius white buttons. Rate-limit dashboards and key-verification code samples glow against the void with thin keyline borders — developer security tooling with the visual temperature of a server room at night.
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/unkey.
Tokens
Unkey's decoded design system: background #040406, text #9194A1, accent #ABAEBB, link #ABAEBB, primary #9194A1; type scale h1 64px / h2 44px / body 16px; 4px spacing base; 0px 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
| Role | Value |
|---|---|
| bg | #040406 |
| surface | #0C0C0F |
| border | #19191D |
| text | #9194A1 |
| text_muted | #5B5D66 |
| primary | #9194A1 |
| accent | #ABAEBB |
| link | #ABAEBB |
| secondary | #3C83F6 |
| button_bg | #FFFFFF |
| button_text | #040406 |
Using these colors
- Action color
#FFFFFF— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#ABAEBB— one role, not several (the action color).- accent
#ABAEBB— accent for emphasis — keep it rare on the page. - primary
#9194A1— ≈ the text color — a foreground/text color, not an action color (action = #FFFFFF). - secondary
#3C83F6— 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: Inter
- Body: Inter
- h1: 64px
- h2: 44px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 0px
Per-section tokens (10)
Export: DESIGN.md
# Unkey — Design System > dark, modern, medium, tailwind Unkey secures APIs in blackout: Articulat CF at 64px/400 white on #040406, Inter at 16px, and sharp zero-radius white buttons. Rate-limit dashboards and key-verification code samples glow against the void with thin keyline borders — developer security tooling with the visual temperature of a server room at night. ## Colors | Role | Value | |------|-------| | bg | `#040406` | | surface | `#0C0C0F` | | border | `#19191D` | | text | `#9194A1` | | text_muted | `#5B5D66` | | primary | `#9194A1` | | accent | `#ABAEBB` | | link | `#ABAEBB` | | secondary | `#3C83F6` | | button_bg | `#FFFFFF` | | button_text | `#040406` | **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. - `accent`, `link` are all `#ABAEBB` — one role, not several. - **accent** `#ABAEBB` — accent for emphasis — keep it rare on the page. - **primary** `#9194A1` — ≈ the text color — a foreground/text color, not an action color (action = #FFFFFF). - **secondary** `#3C83F6` — 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: **Inter** - Body: **Inter** - h1: 64px - h2: 44px - body: 16px > **Fonts —** Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 0px - button: 0px ## Primary button - bg `#FFFFFF` · text `#040406` · radius 0px ## 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: #040406;
--color-surface: #0C0C0F;
--color-border: #19191D;
--color-text: #9194A1;
--color-text-muted: #5B5D66;
--color-primary: #9194A1; /* ≈ the text color — a foreground/text color, not an action color (action = #FFFFFF). */
--color-accent: #ABAEBB; /* accent for emphasis — keep it rare on the page. */
--color-link: #ABAEBB; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #FFFFFF). */
--color-secondary: #3C83F6; /* 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: #040406;
/* 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: 64px;
--text-h2: 44px;
--text-body: 16px;
--radius-base: 0px;
--radius-button: 0px;
--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: #040406;
--surface: #0C0C0F;
--border: #19191D;
--text: #9194A1;
--text-muted: #5B5D66;
--primary: #9194A1; /* ≈ the text color — a foreground/text color, not an action color (action = #FFFFFF). */
--accent: #ABAEBB; /* accent for emphasis — keep it rare on the page. */
--link: #ABAEBB; /* reads as a neutral UI color, not a link accent — verify against the reference (action = #FFFFFF). */
--secondary: #3C83F6; /* 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: #040406;
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 0px;
}
/* fonts: Inter — free, on Google. */