MozaikaDesign system

Doom 64 UI — Design System

dark · modern · medium · react · confidence 95%

The Doom 64 theme — a cohesive shadcn/ui design system (measured tokens).

Open in Mozaika →

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/doom-64-ui.

Tokens

Doom 64 UI's decoded design system: background #1A1A1A, text #E0E0E0, accent #E53935, link #E53935, primary #E53935; type scale h1 36px / h2 24px / body 14px; 4px spacing base; 0px base radius. The single interactive/action color is #E53935 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#1A1A1A
surface#252525
border#373737
text#E0E0E0
text_muted#949494
primary#E53935
accent#E53935
link#E53935
button_bg#E53935
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Export: DESIGN.md

# Doom 64 UI — Design System

> dark, modern, medium, react

The Doom 64 theme — a cohesive shadcn/ui design system (measured tokens).

## Colors

| Role | Value |
|------|-------|
| bg | `#1A1A1A` |
| surface | `#252525` |
| border | `#373737` |
| text | `#E0E0E0` |
| text_muted | `#949494` |
| primary | `#E53935` |
| accent | `#E53935` |
| link | `#E53935` |
| button_bg | `#E53935` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#E53935` — 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 `#E53935` — one role, not several (your action color).
- **accent** `#E53935` — 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: **Oxanium** _(free fallback: Newsreader)_
- Body: **Oxanium** _(free fallback: Newsreader)_
- h1: 36px
- h2: 24px
- body: 14px

> **Fonts —** Oxanium may be proprietary — safe free fallback: Newsreader (Google Fonts).

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px

## Radius
- base: 0px
- button: 0px

## Primary button
- bg `#E53935` · text `#FFFFFF` · 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.

---

> **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/doom-64-ui

Export: Tailwind v4 (@theme)

@theme {
  /* action color #E53935 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #1A1A1A;
  --color-surface: #252525;
  --color-border: #373737;
  --color-text: #E0E0E0;
  --color-text-muted: #949494;
  --color-primary: #E53935;  /* primary brand / action color. */
  --color-accent: #E53935;  /* 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: #E53935;  /* inline text links — shares the action color. */
  --color-button-bg: #E53935;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Oxanium may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Oxanium", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Oxanium", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 36px;
  --text-h2: 24px;
  --text-body: 14px;
  --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 #E53935 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #1A1A1A;
  --surface: #252525;
  --border: #373737;
  --text: #E0E0E0;
  --text-muted: #949494;
  --primary: #E53935;  /* primary brand / action color. */
  --accent: #E53935;  /* 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: #E53935;  /* inline text links — shares the action color. */
  --button-bg: #E53935;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Oxanium", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Oxanium", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 0px;
}
/* fonts: Oxanium may be proprietary — safe free fallback: Newsreader (Google Fonts). */