The Kit/Themes

Neutral

The Forge's clean baseline — the canonical token contract's default values. A calm starting point for new work.

--bg#0c0e13--surface#14171e--surface-2#1b1f28--ink#f1f3f7--accent#6ea8fe--accent-2#b66efe--good#36d399--warn#f5b544--bad#ff5d6c
theme.css
/* Neutral — The Forge's clean baseline theme (the canonical contract's defaults). */
[data-theme="neutral"] {
  --bg: #0c0e13;
  --surface: #14171e;
  --surface-2: #1b1f28;
  --line: #2a2f3a;

  --ink: #f1f3f7;
  --ink-dim: #aab0bd;
  --ink-faint: #6f7682;

  --accent: #6ea8fe;
  --accent-2: #b66efe;

  --good: #36d399;
  --warn: #f5b544;
  --bad: #ff5d6c;

  --font-display: var(--font-montserrat), system-ui, sans-serif;
  --font-ui: var(--font-barlow), system-ui, sans-serif;
  --font-mono: var(--font-jetbrains), ui-monospace, monospace;

  --radius: 12px;
  --radius-sm: 7px;
  --ring: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 30px rgba(0, 0, 0, 0.35);
}
← The whole kit