Midjourney — Design System
Midjourney keeps its web chrome terminal-humble: JetBrains Mono at 20-30px (an ASCII-storm wordmark as the hero), DM Sans at 16px, and frosted full-pill buttons. The generated imagery — glowing blue galleries of impossible things — is the only spectacle; the mono type is the lab notebook it's pasted into.
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/midjourney.
Tokens
Midjourney's decoded design system: background #06051D, text #CAD5E2, accent #0F1C36, link #06051D, primary #06051D; type scale h1 30px / h2 20px / body 16px; 8px spacing base; 0px base radius. The single interactive/action color is #0F1C36 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #06051D |
| surface | #111128 |
| border | #23243A |
| text | #CAD5E2 |
| text_muted | #7F8597 |
| primary | #06051D |
| accent | #0F1C36 |
| link | #06051D |
| secondary | #CAD5E2 |
| button_bg | #0F1C36 |
| button_text | #ECFDF5 |
Using these colors
- Action color
#0F1C36— the single interactive color; only on things you click or must notice, never large fills. primary,linkare all#06051D— one role, not several (the action color).accent,button_bgare all#0F1C36— one role, not several (the action color).- accent
#0F1C36— 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. - secondary
#CAD5E2— 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: JetBrains Mono
- Body: DM Sans
- h1: 30px
- h2: 20px
- body: 16px
Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px
Radii
- base: 0px
- button: 9999px
Shadow
rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px
Per-section tokens (7)
Export: DESIGN.md
# Midjourney — Design System > dark, modern, medium, tailwind Midjourney keeps its web chrome terminal-humble: JetBrains Mono at 20-30px (an ASCII-storm wordmark as the hero), DM Sans at 16px, and frosted full-pill buttons. The generated imagery — glowing blue galleries of impossible things — is the only spectacle; the mono type is the lab notebook it's pasted into. ## Colors | Role | Value | |------|-------| | bg | `#06051D` | | surface | `#111128` | | border | `#23243A` | | text | `#CAD5E2` | | text_muted | `#7F8597` | | primary | `#06051D` | | accent | `#0F1C36` | | link | `#06051D` | | secondary | `#CAD5E2` | | button_bg | `#0F1C36` | | button_text | `#ECFDF5` | **Using these colors** - **Action color** `#0F1C36` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `primary`, `link` are all `#06051D` — one role, not several. - `accent`, `button_bg` are all `#0F1C36` — one role, not several (your action color). - **accent** `#0F1C36` — 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. - **secondary** `#CAD5E2` — 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: **JetBrains Mono** - Body: **DM Sans** - h1: 30px - h2: 20px - body: 16px > **Fonts —** JetBrains Mono — free, on Google. DM Sans — free, on Google. ## Spacing - base unit: 8px - scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px ## Radius - base: 0px - button: 9999px ## Primary button - bg `#0F1C36` · text `#ECFDF5` · 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 #0F1C36 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #06051D;
--color-surface: #111128;
--color-border: #23243A;
--color-text: #CAD5E2;
--color-text-muted: #7F8597;
--color-primary: #06051D; /* a brand color — but the call-to-action uses #0F1C36, not this. */
--color-accent: #0F1C36; /* 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: #06051D; /* fails contrast on the background (~1.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--color-secondary: #CAD5E2; /* 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: #0F1C36; /* primary-button fill — the main call-to-action color. */
--color-button-text: #ECFDF5;
/* fonts: JetBrains Mono — free, on Google. DM Sans — free, on Google. */
--font-heading: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-body: "DM Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 30px;
--text-h2: 20px;
--text-body: 16px;
--radius-base: 0px;
--radius-button: 9999px;
--spacing-1: 4px;
--spacing-2: 8px;
--spacing-3: 12px;
--spacing-4: 16px;
--spacing-5: 24px;
--spacing-6: 32px;
--spacing-7: 48px;
--spacing-8: 64px;
}Export: CSS variables
:root {
/* action color #0F1C36 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #06051D;
--surface: #111128;
--border: #23243A;
--text: #CAD5E2;
--text-muted: #7F8597;
--primary: #06051D; /* a brand color — but the call-to-action uses #0F1C36, not this. */
--accent: #0F1C36; /* 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: #06051D; /* fails contrast on the background (~1.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #CAD5E2; /* 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: #0F1C36; /* primary-button fill — the main call-to-action color. */
--button-text: #ECFDF5;
--font-heading: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-body: "DM Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 9999px;
}
/* fonts: JetBrains Mono — free, on Google. DM Sans — free, on Google. */