feat(theme): dark/light mode with a Radix Colors-based palette
Adds a working Dark/Light toggle (next to the language switcher, same row
as EN/VI) and re-themes the whole dashboard, not just the handful of
components that already used semantic tokens.
- Tailwind darkMode:"class" + CSS-variable color tokens (client/src/index.css,
tailwind.config.js): surface.0-5, border/border-light, accent/accent-hover,
fg.primary/secondary/muted, status.success/danger/warning. One class flip
on <html> re-themes everything — no per-element dark: variant pairs.
- useTheme() hook: localStorage-persisted, defaults to dark, no
prefers-color-scheme fallback (client/src/hooks/useTheme.ts).
- Mechanical, table-driven migration (scripts/migrate-color-tokens.mjs,
scripts/tokenize-status-colors.mjs, scripts/darken-status-colors.mjs) of
every raw neutral/gray/slate + emerald/red/amber Tailwind utility across
client/src onto the new tokens, so every badge/button/component pulls the
same shade per status/role instead of each picking its own.
- Palette values are the literal Radix Colors (radix-ui.com/colors) scale
constants — slate/blue/green/red/amber steps 1-12 — adopted after three
rounds of hand-picked values that kept overshooting (flat, then too dark,
then glaring); see docs/superpowers/specs/2026-07-31-color-redesign-
dark-light-mode-design.md for the full history and role mapping.
- PipelineMap: done/current/failed/passed-no-evidence/detected share one
visual language (border + text + translucent wash of the same status
color); `current` alone stays a solid accent fill, the one state that
gets to look bolder ("you are here").
- LaneCard: removed the stage/kind/auto-stage chips that duplicated the
Workspace lane-detail header already showing them.
Categorical/decorative hues (violet, indigo, cyan, teal, sky, rose, pink,
orange, yellow, and blue where it plays a role-coloring part e.g. message
bubbles) are deliberately out of scope — collapsing those onto shared
tokens would erase the distinction between different kinds of thing, not
a status.
This commit is contained in:
@@ -256,21 +256,22 @@ function TokenMeter({ stats }: { stats: TokenStats }) {
|
||||
const pct = Math.min(100, Math.round((total / cap) * 100));
|
||||
// Colour is the whole warning mechanism here - the meter is one status line,
|
||||
// so there is no room for a bar plus five labelled figures.
|
||||
const tone = pct >= 95 ? "text-red-300" : pct >= 80 ? "text-amber-300" : "text-gray-400";
|
||||
const tone =
|
||||
pct >= 95 ? "text-status-danger" : pct >= 80 ? "text-status-warning" : "text-fg-secondary";
|
||||
return (
|
||||
<div className="flex flex-wrap items-center gap-x-3 gap-y-0.5 border-t border-border px-3 py-1.5 font-mono text-[11.5px] text-gray-500">
|
||||
<div className="flex flex-wrap items-center gap-x-3 gap-y-0.5 border-t border-border px-3 py-1.5 font-mono text-[11.5px] text-fg-muted">
|
||||
<span className="select-none opacity-60" aria-hidden>
|
||||
──
|
||||
</span>
|
||||
<span className={tone}>{`${formatNum(total)} / ${formatNum(cap)} (${pct}%)`}</span>
|
||||
<span title={t("tokens.output")}>↑{formatNum(stats.outputTokens)}</span>
|
||||
{stats.cacheReadTokens > 0 && (
|
||||
<span className="text-emerald-400/70" title={t("tokens.cacheRead")}>
|
||||
<span className="text-status-success/70" title={t("tokens.cacheRead")}>
|
||||
⚡{formatNum(stats.cacheReadTokens)}
|
||||
</span>
|
||||
)}
|
||||
{stats.costUsd != null && (
|
||||
<span className="text-gray-400">${stats.costUsd.toFixed(4)}</span>
|
||||
<span className="text-fg-secondary">${stats.costUsd.toFixed(4)}</span>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
@@ -323,11 +324,11 @@ function commandSourceLabel(s: SlashCommand["source"]): string {
|
||||
|
||||
function commandSourceTone(s: SlashCommand["source"]): string {
|
||||
return s === "builtin"
|
||||
? "bg-gray-500/10 text-gray-400 border-gray-500/30"
|
||||
? "bg-surface-4/10 text-fg-secondary border-border-light/30"
|
||||
: s === "user"
|
||||
? "bg-sky-500/10 text-sky-300 border-sky-500/30"
|
||||
: s === "project"
|
||||
? "bg-emerald-500/10 text-emerald-300 border-emerald-500/30"
|
||||
? "bg-status-success/10 text-status-success border-status-success/30"
|
||||
: "bg-violet-500/10 text-violet-300 border-violet-500/30";
|
||||
}
|
||||
|
||||
@@ -565,11 +566,11 @@ export function PromptEditor({
|
||||
placeholder={placeholder}
|
||||
rows={rows}
|
||||
spellCheck={false}
|
||||
className="w-full bg-surface-2 border border-border rounded-md px-3 py-2 text-sm text-gray-100 placeholder:text-gray-500 focus:outline-none focus:border-accent/50 resize-y font-sans leading-relaxed"
|
||||
className="w-full bg-surface-2 border border-border rounded-md px-3 py-2 text-sm text-fg-primary placeholder:text-fg-muted focus:outline-none focus:border-accent/50 resize-y font-sans leading-relaxed"
|
||||
/>
|
||||
{state && (
|
||||
<div className="absolute z-30 left-0 right-0 bottom-full mb-1 rounded-md border border-border bg-surface-1 shadow-lg shadow-black/40 max-h-72 overflow-auto py-1">
|
||||
<div className="px-3 py-1.5 border-b border-border text-[10px] font-semibold uppercase tracking-wider text-gray-500 inline-flex items-center gap-1.5">
|
||||
<div className="px-3 py-1.5 border-b border-border text-[10px] font-semibold uppercase tracking-wider text-fg-muted inline-flex items-center gap-1.5">
|
||||
{state.kind === "slash" ? (
|
||||
<>
|
||||
<SlashIcon className="w-3 h-3" />
|
||||
@@ -583,7 +584,7 @@ export function PromptEditor({
|
||||
)}
|
||||
</div>
|
||||
{items.length === 0 ? (
|
||||
<div className="px-3 py-2 text-[11px] text-gray-500">{t("autocomplete.noMatches")}</div>
|
||||
<div className="px-3 py-2 text-[11px] text-fg-muted">{t("autocomplete.noMatches")}</div>
|
||||
) : state.kind === "slash" ? (
|
||||
(items as SlashCommand[]).map((c, idx) => (
|
||||
<button
|
||||
@@ -597,7 +598,7 @@ export function PromptEditor({
|
||||
}`}
|
||||
>
|
||||
<div className="flex items-center gap-2">
|
||||
<span className="font-mono text-[12px] text-gray-100">/{c.name}</span>
|
||||
<span className="font-mono text-[12px] text-fg-primary">/{c.name}</span>
|
||||
<span
|
||||
className={`text-[9px] font-mono px-1.5 py-0.5 rounded border ${commandSourceTone(c.source)}`}
|
||||
>
|
||||
@@ -605,7 +606,7 @@ export function PromptEditor({
|
||||
</span>
|
||||
</div>
|
||||
{c.description && (
|
||||
<div className="text-[10.5px] text-gray-500 truncate mt-0.5">{c.description}</div>
|
||||
<div className="text-[10.5px] text-fg-muted truncate mt-0.5">{c.description}</div>
|
||||
)}
|
||||
</button>
|
||||
))
|
||||
@@ -621,8 +622,8 @@ export function PromptEditor({
|
||||
idx === active ? "bg-accent/15" : "hover:bg-surface-3"
|
||||
}`}
|
||||
>
|
||||
<FileCode className="w-3 h-3 text-gray-500 flex-shrink-0" />
|
||||
<span className="font-mono text-[11px] text-gray-200 truncate">{p}</span>
|
||||
<FileCode className="w-3 h-3 text-fg-muted flex-shrink-0" />
|
||||
<span className="font-mono text-[11px] text-fg-secondary truncate">{p}</span>
|
||||
</button>
|
||||
))
|
||||
)}
|
||||
@@ -693,16 +694,16 @@ export function RunConsole(props: RunConsoleProps) {
|
||||
<div className="flex flex-wrap items-center gap-2 border-b border-border px-3 py-1.5 font-mono text-[11.5px]">
|
||||
<StatusPill status={props.handle.status} />
|
||||
<ModeBadge mode={props.mode} />
|
||||
{init?.model && <span className="text-gray-500">{init.model}</span>}
|
||||
{init?.model && <span className="text-fg-muted">{init.model}</span>}
|
||||
{props.handle.sessionId && (
|
||||
<span className="truncate text-gray-600">{props.handle.sessionId.slice(0, 8)}</span>
|
||||
<span className="truncate text-fg-muted">{props.handle.sessionId.slice(0, 8)}</span>
|
||||
)}
|
||||
<div className="flex-1" />
|
||||
{props.isLive && (
|
||||
<button
|
||||
onClick={props.onStop}
|
||||
disabled={props.busy === "stop"}
|
||||
className="inline-flex items-center gap-1 text-red-300 hover:text-red-200 disabled:opacity-60 transition-colors"
|
||||
className="inline-flex items-center gap-1 text-status-danger hover:text-status-danger disabled:opacity-60 transition-colors"
|
||||
>
|
||||
<Square className="w-3 h-3" />
|
||||
{props.busy === "stop" ? t("actions.stopping") : t("actions.stop")}
|
||||
@@ -711,7 +712,7 @@ export function RunConsole(props: RunConsoleProps) {
|
||||
{props.handle.sessionId && (
|
||||
<Link
|
||||
to={`/sessions/${encodeURIComponent(props.handle.sessionId)}`}
|
||||
className="inline-flex items-center gap-1 text-gray-400 hover:text-gray-200 transition-colors"
|
||||
className="inline-flex items-center gap-1 text-fg-secondary hover:text-fg-primary transition-colors"
|
||||
>
|
||||
<ExternalLink className="w-3 h-3" />
|
||||
{t("actions.viewSession")}
|
||||
@@ -756,7 +757,7 @@ export function RunConsole(props: RunConsoleProps) {
|
||||
fileCwd={props.handle.cwd}
|
||||
/>
|
||||
<div className="mt-2 flex items-center justify-between">
|
||||
<div className="text-[10px] text-gray-600">{t("hint.shortcut")} · / · @</div>
|
||||
<div className="text-[10px] text-fg-muted">{t("hint.shortcut")} · / · @</div>
|
||||
<button
|
||||
onClick={props.onSend}
|
||||
disabled={!props.followUp.trim() || props.busy === "send"}
|
||||
@@ -775,7 +776,7 @@ function EmptyStream({ isLive }: { isLive: boolean }) {
|
||||
const { t } = useTranslation("run");
|
||||
if (isLive) {
|
||||
return (
|
||||
<div className="text-center py-12 text-gray-500 flex flex-col items-center gap-2">
|
||||
<div className="text-center py-12 text-fg-muted flex flex-col items-center gap-2">
|
||||
<RefreshCw className="w-5 h-5 animate-spin" />
|
||||
<span className="text-xs">{t("status.spawning")}</span>
|
||||
</div>
|
||||
@@ -783,25 +784,37 @@ function EmptyStream({ isLive }: { isLive: boolean }) {
|
||||
}
|
||||
return (
|
||||
<div className="text-center py-12 flex flex-col items-center gap-2">
|
||||
<Sparkles className="w-6 h-6 text-gray-600" />
|
||||
<div className="text-sm font-medium text-gray-400">{t("empty.title")}</div>
|
||||
<div className="text-xs text-gray-500 max-w-md">{t("empty.body")}</div>
|
||||
<Sparkles className="w-6 h-6 text-fg-muted" />
|
||||
<div className="text-sm font-medium text-fg-secondary">{t("empty.title")}</div>
|
||||
<div className="text-xs text-fg-muted max-w-md">{t("empty.body")}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export function StatusPill({ status }: { status: string }) {
|
||||
const { t } = useTranslation("run");
|
||||
const idle = { color: "bg-surface-3 text-gray-400 border-border", icon: Clock as typeof Play };
|
||||
const idle = {
|
||||
color: "bg-surface-3 text-fg-secondary border-border",
|
||||
icon: Clock as typeof Play,
|
||||
};
|
||||
const config: Record<string, { color: string; icon: typeof Play }> = {
|
||||
spawning: { color: "bg-amber-500/15 text-amber-300 border-amber-500/30", icon: RefreshCw },
|
||||
running: { color: "bg-emerald-500/15 text-emerald-300 border-emerald-500/30", icon: Sparkles },
|
||||
spawning: {
|
||||
color: "bg-status-warning/15 text-status-warning border-status-warning/30",
|
||||
icon: RefreshCw,
|
||||
},
|
||||
running: {
|
||||
color: "bg-status-success/15 text-status-success border-status-success/30",
|
||||
icon: Sparkles,
|
||||
},
|
||||
completed: {
|
||||
color: "bg-emerald-500/15 text-emerald-300 border-emerald-500/30",
|
||||
color: "bg-status-success/15 text-status-success border-status-success/30",
|
||||
icon: CheckCircle2,
|
||||
},
|
||||
error: { color: "bg-red-500/15 text-red-300 border-red-500/30", icon: XCircle },
|
||||
killed: { color: "bg-gray-500/15 text-gray-400 border-gray-500/30", icon: Square },
|
||||
error: {
|
||||
color: "bg-status-danger/15 text-status-danger border-status-danger/30",
|
||||
icon: XCircle,
|
||||
},
|
||||
killed: { color: "bg-surface-4/15 text-fg-secondary border-border-light/30", icon: Square },
|
||||
abandoned: {
|
||||
color: "bg-orange-500/10 text-orange-300 border-orange-500/30",
|
||||
icon: Square,
|
||||
@@ -826,7 +839,7 @@ export function StatusPill({ status }: { status: string }) {
|
||||
export function ModeBadge({ mode }: { mode: RunMode }) {
|
||||
const { t } = useTranslation("run");
|
||||
return (
|
||||
<span className="text-[10px] font-mono px-1.5 py-0.5 rounded bg-surface-3 text-gray-400 border border-border inline-flex items-center gap-1">
|
||||
<span className="text-[10px] font-mono px-1.5 py-0.5 rounded bg-surface-3 text-fg-secondary border border-border inline-flex items-center gap-1">
|
||||
{mode === "conversation" ? (
|
||||
<Terminal className="w-3 h-3" />
|
||||
) : (
|
||||
@@ -894,7 +907,7 @@ function UserTurn({ env }: { env: UserMessage }) {
|
||||
<span className="select-none text-indigo-400" aria-hidden>
|
||||
>
|
||||
</span>
|
||||
<span className="min-w-0 flex-1 whitespace-pre-wrap break-words text-gray-200">
|
||||
<span className="min-w-0 flex-1 whitespace-pre-wrap break-words text-fg-secondary">
|
||||
{text || "-"}
|
||||
</span>
|
||||
</div>
|
||||
@@ -928,10 +941,13 @@ function AssistantTurn({ env }: { env: AssistantMessage }) {
|
||||
// The gutter glyph is the only speaker marker - no avatar, no label
|
||||
// row. Prose keeps its markdown rendering; only the chrome is gone.
|
||||
<div className="flex gap-2">
|
||||
<span className="select-none font-mono text-[12.5px] leading-relaxed text-accent" aria-hidden>
|
||||
<span
|
||||
className="select-none font-mono text-[12.5px] leading-relaxed text-accent"
|
||||
aria-hidden
|
||||
>
|
||||
›
|
||||
</span>
|
||||
<div className="min-w-0 flex-1 text-[13px] leading-relaxed text-gray-200 prose-claude">
|
||||
<div className="min-w-0 flex-1 text-[13px] leading-relaxed text-fg-secondary prose-claude">
|
||||
<MarkdownContent text={text} />
|
||||
</div>
|
||||
</div>
|
||||
@@ -978,14 +994,14 @@ function ToolUseBlock({ toolUse }: { toolUse: Extract<ContentBlock, { type: "too
|
||||
className="flex w-full items-baseline gap-2 text-left hover:bg-white/[0.03] transition-colors"
|
||||
title={t("events.tool")}
|
||||
>
|
||||
<span className="select-none text-amber-400" aria-hidden>
|
||||
<span className="select-none text-status-warning" aria-hidden>
|
||||
●
|
||||
</span>
|
||||
<span className="font-medium text-amber-200">{toolUse.name}</span>
|
||||
{summary && <span className="truncate text-gray-500">{summary}</span>}
|
||||
<span className="font-medium text-status-warning">{toolUse.name}</span>
|
||||
{summary && <span className="truncate text-fg-muted">{summary}</span>}
|
||||
</button>
|
||||
{open && (
|
||||
<pre className="mt-0.5 ml-1.5 max-h-72 overflow-auto border-l border-amber-500/25 pl-3 whitespace-pre-wrap break-words text-gray-400">
|
||||
<pre className="mt-0.5 ml-1.5 max-h-72 overflow-auto border-l border-status-warning/25 pl-3 whitespace-pre-wrap break-words text-fg-secondary">
|
||||
{JSON.stringify(toolUse.input, null, 2)}
|
||||
</pre>
|
||||
)}
|
||||
@@ -1010,7 +1026,7 @@ function ToolResultBlock({ result }: { result: Extract<ContentBlock, { type: "to
|
||||
.join("\n")
|
||||
: JSON.stringify(result.content);
|
||||
const lines = text.split("\n").length;
|
||||
const tone = result.is_error ? "text-red-300" : "text-emerald-300/90";
|
||||
const tone = result.is_error ? "text-status-danger" : "text-status-success/90";
|
||||
// First line is the useful one nine times out of ten, so it doubles as the
|
||||
// collapsed summary instead of a generic "tool result" label.
|
||||
const firstLine = text.split("\n").find((l) => l.trim()) || "";
|
||||
@@ -1037,9 +1053,9 @@ function ToolResultBlock({ result }: { result: Extract<ContentBlock, { type: "to
|
||||
|
||||
function UnknownTurn({ env }: { env: Envelope }) {
|
||||
return (
|
||||
<details className="font-mono text-[11.5px] leading-relaxed text-gray-500">
|
||||
<details className="font-mono text-[11.5px] leading-relaxed text-fg-muted">
|
||||
<summary className="cursor-pointer">? {(env.type as string) || "unknown"}</summary>
|
||||
<pre className="mt-0.5 ml-1.5 max-h-48 overflow-auto border-l border-border pl-3 whitespace-pre-wrap break-words text-gray-500">
|
||||
<pre className="mt-0.5 ml-1.5 max-h-48 overflow-auto border-l border-border pl-3 whitespace-pre-wrap break-words text-fg-muted">
|
||||
{JSON.stringify(env, null, 2)}
|
||||
</pre>
|
||||
</details>
|
||||
@@ -1061,21 +1077,21 @@ function ResultFooter({ result }: { result: ResultEnvelope }) {
|
||||
const { t } = useTranslation("run");
|
||||
const isError = result.is_error;
|
||||
const parts: string[] = [];
|
||||
if (typeof result.duration_ms === "number") parts.push(`${(result.duration_ms / 1000).toFixed(1)}s`);
|
||||
if (typeof result.duration_ms === "number")
|
||||
parts.push(`${(result.duration_ms / 1000).toFixed(1)}s`);
|
||||
if (typeof result.total_cost_usd === "number") parts.push(`$${result.total_cost_usd.toFixed(4)}`);
|
||||
if (typeof result.num_turns === "number") parts.push(t("footer.turns") + " " + result.num_turns);
|
||||
return (
|
||||
<div
|
||||
className={`border-t border-border px-3 py-1.5 font-mono text-[11.5px] ${
|
||||
isError ? "text-red-300" : "text-emerald-300/90"
|
||||
isError ? "text-status-danger" : "text-status-success/90"
|
||||
}`}
|
||||
>
|
||||
<span className="select-none opacity-60" aria-hidden>
|
||||
──{" "}
|
||||
</span>
|
||||
{isError ? t("status.error") : t("status.completed")}
|
||||
{parts.length > 0 && <span className="text-gray-500"> · {parts.join(" · ")}</span>}
|
||||
{parts.length > 0 && <span className="text-fg-muted"> · {parts.join(" · ")}</span>}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user