Darkmatter UI — Design System
The Darkmatter theme — a cohesive shadcn/ui design system (measured tokens).
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/darkmatter-ui.
Tokens
Darkmatter UI's decoded design system: background #121113, text #C1C1C1, accent #E78A53, link #E78A53, primary #E78A53; type scale h1 36px / h2 24px / body 14px; 4px spacing base; 12px base radius. The single interactive/action color is #E78A53 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #121113 |
| surface | #1C1B1D |
| border | #2C2B2D |
| text | #C1C1C1 |
| text_muted | #7E7E7E |
| primary | #E78A53 |
| accent | #E78A53 |
| link | #E78A53 |
| button_bg | #E78A53 |
| button_text | #121113 |
Using these colors
- Action color
#E78A53— the single interactive color; only on things you click or must notice, never large fills. primary,accent,link,button_bgare all#E78A53— one role, not several (the action color).- accent
#E78A53— 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.
Typography
- Heading: Geist Mono
- Body: Geist Mono
- h1: 36px
- h2: 24px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 12px
- button: 12px
Export: DESIGN.md
# Darkmatter UI — Design System > dark, modern, medium, react The Darkmatter theme — a cohesive shadcn/ui design system (measured tokens). ## Colors | Role | Value | |------|-------| | bg | `#121113` | | surface | `#1C1B1D` | | border | `#2C2B2D` | | text | `#C1C1C1` | | text_muted | `#7E7E7E` | | primary | `#E78A53` | | accent | `#E78A53` | | link | `#E78A53` | | button_bg | `#E78A53` | | button_text | `#121113` | **Using these colors** - **Action color** `#E78A53` — 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`, `link`, `button_bg` are all `#E78A53` — one role, not several (your action color). - **accent** `#E78A53` — 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. ## Typography - Heading: **Geist Mono** _(free fallback: JetBrains Mono)_ - Body: **Geist Mono** _(free fallback: JetBrains Mono)_ - h1: 36px - h2: 24px - body: 14px > **Fonts —** Geist Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 12px - button: 12px ## Primary button - bg `#E78A53` · text `#121113` · 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. --- > **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/darkmatter-ui
Export: Tailwind v4 (@theme)
@theme {
/* action color #E78A53 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #121113;
--color-surface: #1C1B1D;
--color-border: #2C2B2D;
--color-text: #C1C1C1;
--color-text-muted: #7E7E7E;
--color-primary: #E78A53; /* primary brand / action color. */
--color-accent: #E78A53; /* 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: #E78A53; /* inline text links — shares the action color. */
--color-button-bg: #E78A53; /* primary-button fill — the main call-to-action color. */
--color-button-text: #121113;
/* fonts: Geist Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */
--font-heading: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-body: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--text-h1: 36px;
--text-h2: 24px;
--text-body: 14px;
--radius-base: 12px;
--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 #E78A53 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #121113;
--surface: #1C1B1D;
--border: #2C2B2D;
--text: #C1C1C1;
--text-muted: #7E7E7E;
--primary: #E78A53; /* primary brand / action color. */
--accent: #E78A53; /* 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: #E78A53; /* inline text links — shares the action color. */
--button-bg: #E78A53; /* primary-button fill — the main call-to-action color. */
--button-text: #121113;
--font-heading: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--font-body: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--radius: 12px;
--radius-button: 12px;
}
/* fonts: Geist Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */