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:
@@ -110,7 +110,7 @@ const TYPE_STYLES: Partial<Record<WebhookType, string>> = {
|
||||
opsgenie: "text-[#2684FF] bg-[#2684FF]/10 border-[#2684FF]/20",
|
||||
splunk_oncall: "text-[#F99D1C] bg-[#F99D1C]/10 border-[#F99D1C]/20",
|
||||
};
|
||||
const NEUTRAL_STYLE = "text-gray-300 bg-surface-2 border-border";
|
||||
const NEUTRAL_STYLE = "text-fg-secondary bg-surface-2 border-border";
|
||||
|
||||
interface HeaderRow {
|
||||
key: string;
|
||||
@@ -155,7 +155,7 @@ function Toggle({
|
||||
aria-label={label}
|
||||
onClick={() => onChange(!checked)}
|
||||
className={`relative inline-flex h-5 w-9 flex-shrink-0 items-center rounded-full transition-colors ${
|
||||
checked ? "bg-blue-500" : "bg-surface-4"
|
||||
checked ? "bg-blue-600" : "bg-surface-4"
|
||||
}`}
|
||||
>
|
||||
<span
|
||||
@@ -390,7 +390,7 @@ export function WebhookSettings() {
|
||||
return (
|
||||
<div className="card p-5 space-y-4">
|
||||
<div className="flex items-center justify-between gap-3">
|
||||
<div className="flex items-center gap-2 text-xs text-gray-500">
|
||||
<div className="flex items-center gap-2 text-xs text-fg-muted">
|
||||
<Webhook className="w-3.5 h-3.5" />
|
||||
{t("webhooks.count", { count: targets.length })}
|
||||
</div>
|
||||
@@ -408,9 +408,9 @@ export function WebhookSettings() {
|
||||
|
||||
{/* Target list */}
|
||||
{loading ? (
|
||||
<p className="text-xs text-gray-500">{t("webhooks.loading")}</p>
|
||||
<p className="text-xs text-fg-muted">{t("webhooks.loading")}</p>
|
||||
) : targets.length === 0 && !formOpen ? (
|
||||
<div className="flex items-center gap-2 text-xs text-gray-500 py-2">
|
||||
<div className="flex items-center gap-2 text-xs text-fg-muted py-2">
|
||||
<Webhook className="w-3.5 h-3.5" />
|
||||
{t("webhooks.empty")}
|
||||
</div>
|
||||
@@ -431,12 +431,12 @@ export function WebhookSettings() {
|
||||
>
|
||||
{labelOf(target.type)}
|
||||
</span>
|
||||
<span className="text-sm text-gray-200 font-medium">{target.name}</span>
|
||||
<code className="text-[11px] text-gray-500 font-mono truncate max-w-[220px]">
|
||||
<span className="text-sm text-fg-secondary font-medium">{target.name}</span>
|
||||
<code className="text-[11px] text-fg-muted font-mono truncate max-w-[220px]">
|
||||
{target.url_preview}
|
||||
</code>
|
||||
{target.rule_ids && target.rule_ids.length > 0 && (
|
||||
<span className="text-[10px] text-amber-400/80">
|
||||
<span className="text-[10px] text-status-warning/80">
|
||||
{t("webhooks.scopedTo", { count: target.rule_ids.length })}
|
||||
</span>
|
||||
)}
|
||||
@@ -446,8 +446,8 @@ export function WebhookSettings() {
|
||||
title={target.last_delivery.error || undefined}
|
||||
className={`inline-flex items-center gap-1 text-[10px] px-1.5 py-0.5 rounded-full ${
|
||||
target.last_delivery.status === "success"
|
||||
? "text-emerald-400 bg-emerald-500/10"
|
||||
: "text-red-400 bg-red-500/10"
|
||||
? "text-status-success bg-status-success/10"
|
||||
: "text-status-danger bg-status-danger/10"
|
||||
}`}
|
||||
>
|
||||
{target.last_delivery.status === "success" ? (
|
||||
@@ -470,7 +470,7 @@ export function WebhookSettings() {
|
||||
<button
|
||||
onClick={() => onTest(target.id)}
|
||||
disabled={testing === target.id}
|
||||
className="inline-flex items-center gap-1.5 text-[11px] px-2.5 py-1 rounded-md text-gray-400 hover:text-gray-200 hover:bg-surface-4 border border-border transition-colors disabled:opacity-50"
|
||||
className="inline-flex items-center gap-1.5 text-[11px] px-2.5 py-1 rounded-md text-fg-secondary hover:text-fg-primary hover:bg-surface-4 border border-border transition-colors disabled:opacity-50"
|
||||
>
|
||||
{testing === target.id ? (
|
||||
<Loader2 className="w-3 h-3 animate-spin" />
|
||||
@@ -481,14 +481,14 @@ export function WebhookSettings() {
|
||||
</button>
|
||||
<button
|
||||
onClick={() => openEdit(target)}
|
||||
className="inline-flex items-center gap-1.5 text-[11px] px-2.5 py-1 rounded-md text-gray-400 hover:text-gray-200 hover:bg-surface-4 border border-border transition-colors"
|
||||
className="inline-flex items-center gap-1.5 text-[11px] px-2.5 py-1 rounded-md text-fg-secondary hover:text-fg-primary hover:bg-surface-4 border border-border transition-colors"
|
||||
>
|
||||
<Pencil className="w-3 h-3" />
|
||||
{t("webhooks.edit")}
|
||||
</button>
|
||||
<button
|
||||
onClick={() => setConfirmDelete(target.id)}
|
||||
className="inline-flex items-center gap-1.5 text-[11px] px-2.5 py-1 rounded-md text-gray-500 hover:text-red-400 hover:bg-red-500/10 border border-border transition-colors"
|
||||
className="inline-flex items-center gap-1.5 text-[11px] px-2.5 py-1 rounded-md text-fg-muted hover:text-status-danger hover:bg-status-danger/10 border border-border transition-colors"
|
||||
>
|
||||
<Trash2 className="w-3 h-3" />
|
||||
{t("webhooks.delete")}
|
||||
@@ -496,7 +496,7 @@ export function WebhookSettings() {
|
||||
{result && (
|
||||
<span
|
||||
className={`inline-flex items-center gap-1 text-[11px] ${
|
||||
result.ok ? "text-emerald-400" : "text-red-400"
|
||||
result.ok ? "text-status-success" : "text-status-danger"
|
||||
}`}
|
||||
>
|
||||
{result.ok ? (
|
||||
@@ -522,17 +522,17 @@ export function WebhookSettings() {
|
||||
{formOpen && form && provider && (
|
||||
<div className="border border-border rounded-lg p-4 space-y-3 bg-surface-1">
|
||||
<div className="flex items-center justify-between">
|
||||
<h4 className="text-xs font-semibold text-gray-300 uppercase tracking-wide">
|
||||
<h4 className="text-xs font-semibold text-fg-secondary uppercase tracking-wide">
|
||||
{isEdit ? t("webhooks.editTitle") : t("webhooks.addTitle")}
|
||||
</h4>
|
||||
<button onClick={closeForm} className="text-gray-500 hover:text-gray-300">
|
||||
<button onClick={closeForm} className="text-fg-muted hover:text-fg-secondary">
|
||||
<X className="w-4 h-4" />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 sm:grid-cols-2 gap-3">
|
||||
<label className="block">
|
||||
<span className="text-[11px] text-gray-500">{t("webhooks.fieldName")}</span>
|
||||
<span className="text-[11px] text-fg-muted">{t("webhooks.fieldName")}</span>
|
||||
<input
|
||||
value={form.name}
|
||||
onChange={(e) => set({ name: e.target.value })}
|
||||
@@ -541,7 +541,7 @@ export function WebhookSettings() {
|
||||
/>
|
||||
</label>
|
||||
<label className="block">
|
||||
<span className="text-[11px] text-gray-500">{t("webhooks.fieldType")}</span>
|
||||
<span className="text-[11px] text-fg-muted">{t("webhooks.fieldType")}</span>
|
||||
<div className="mt-1">
|
||||
<Select<WebhookType>
|
||||
value={form.type}
|
||||
@@ -564,12 +564,12 @@ export function WebhookSettings() {
|
||||
{/* URL (hidden for providers that derive their own URL) */}
|
||||
{showUrl && (
|
||||
<label className="block">
|
||||
<span className="text-[11px] text-gray-500">
|
||||
<span className="text-[11px] text-fg-muted">
|
||||
{t("webhooks.fieldUrl")}
|
||||
{isEdit ? (
|
||||
<span className="text-gray-600"> - {t("webhooks.urlKeepHint")}</span>
|
||||
<span className="text-fg-muted"> - {t("webhooks.urlKeepHint")}</span>
|
||||
) : urlOptional ? (
|
||||
<span className="text-gray-600"> - {t("webhooks.urlOptional")}</span>
|
||||
<span className="text-fg-muted"> - {t("webhooks.urlOptional")}</span>
|
||||
) : null}
|
||||
</span>
|
||||
<input
|
||||
@@ -583,7 +583,7 @@ export function WebhookSettings() {
|
||||
</label>
|
||||
)}
|
||||
{!showUrl && (
|
||||
<p className="text-[11px] text-gray-600 flex items-center gap-1.5">
|
||||
<p className="text-[11px] text-fg-muted flex items-center gap-1.5">
|
||||
<Webhook className="w-3 h-3" />
|
||||
{t("webhooks.urlAuto")}
|
||||
</p>
|
||||
@@ -594,19 +594,19 @@ export function WebhookSettings() {
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => setGuideOpen((o) => !o)}
|
||||
className="w-full flex items-center justify-between gap-2 px-3 py-2 text-[11px] text-gray-300 hover:bg-surface-3 transition-colors"
|
||||
className="w-full flex items-center justify-between gap-2 px-3 py-2 text-[11px] text-fg-secondary hover:bg-surface-3 transition-colors"
|
||||
>
|
||||
<span className="inline-flex items-center gap-1.5">
|
||||
<BookOpen className="w-3.5 h-3.5 text-gray-500" />
|
||||
<BookOpen className="w-3.5 h-3.5 text-fg-muted" />
|
||||
{t("webhooks.guideToggle", { provider: provider.label })}
|
||||
</span>
|
||||
<ChevronDown
|
||||
className={`w-3.5 h-3.5 text-gray-500 transition-transform ${guideOpen ? "rotate-180" : ""}`}
|
||||
className={`w-3.5 h-3.5 text-fg-muted transition-transform ${guideOpen ? "rotate-180" : ""}`}
|
||||
/>
|
||||
</button>
|
||||
{guideOpen && (
|
||||
<div className="px-3 pb-3 pt-2 space-y-2.5 border-t border-border">
|
||||
<ol className="list-decimal list-inside space-y-1 text-[11px] leading-relaxed text-gray-400 marker:text-gray-600">
|
||||
<ol className="list-decimal list-inside space-y-1 text-[11px] leading-relaxed text-fg-secondary marker:text-fg-muted">
|
||||
{(t(`webhookGuides.${form.type}.steps`, { returnObjects: true }) as string[]).map(
|
||||
(s, i) => (
|
||||
<li key={i}>{s}</li>
|
||||
@@ -624,7 +624,7 @@ export function WebhookSettings() {
|
||||
{t("webhooks.guideDocs", { provider: provider.label })}
|
||||
</a>
|
||||
)}
|
||||
<p className="flex items-start gap-1.5 text-[10px] text-gray-500 leading-relaxed pt-2 border-t border-border">
|
||||
<p className="flex items-start gap-1.5 text-[10px] text-fg-muted leading-relaxed pt-2 border-t border-border">
|
||||
<Info className="w-3 h-3 mt-0.5 flex-shrink-0" />
|
||||
{t("webhooks.guideStaleNote")}
|
||||
</p>
|
||||
@@ -637,9 +637,9 @@ export function WebhookSettings() {
|
||||
<div className="grid grid-cols-1 sm:grid-cols-2 gap-3 pt-1 border-t border-border">
|
||||
{provider.fields.map((f) => (
|
||||
<label key={f.key} className="block">
|
||||
<span className="text-[11px] text-gray-500">
|
||||
<span className="text-[11px] text-fg-muted">
|
||||
{f.label}
|
||||
{f.required && <span className="text-red-400"> *</span>}
|
||||
{f.required && <span className="text-status-danger"> *</span>}
|
||||
</span>
|
||||
{f.type === "enum" && f.options ? (
|
||||
<div className="mt-1">
|
||||
@@ -667,7 +667,7 @@ export function WebhookSettings() {
|
||||
{provider.supports_secret && (
|
||||
<div className="space-y-3 pt-1 border-t border-border">
|
||||
<label className="block">
|
||||
<span className="text-[11px] text-gray-500">{t("webhooks.fieldSecret")}</span>
|
||||
<span className="text-[11px] text-fg-muted">{t("webhooks.fieldSecret")}</span>
|
||||
<input
|
||||
type="password"
|
||||
value={form.secret}
|
||||
@@ -677,18 +677,18 @@ export function WebhookSettings() {
|
||||
}
|
||||
className="input w-full mt-1 py-1.5 text-[11px] leading-normal font-mono"
|
||||
/>
|
||||
<span className="text-[10px] text-gray-600">{t("webhooks.secretHint")}</span>
|
||||
<span className="text-[10px] text-fg-muted">{t("webhooks.secretHint")}</span>
|
||||
</label>
|
||||
|
||||
<div>
|
||||
<div className="flex items-center justify-between">
|
||||
<span className="text-[11px] text-gray-500">{t("webhooks.fieldHeaders")}</span>
|
||||
<span className="text-[11px] text-fg-muted">{t("webhooks.fieldHeaders")}</span>
|
||||
{isEdit && (
|
||||
<Checkbox
|
||||
checked={form.replaceHeaders}
|
||||
onChange={(v) => set({ replaceHeaders: v })}
|
||||
label={t("webhooks.replaceHeaders")}
|
||||
labelClassName="text-[10px] text-gray-500 group-hover:text-gray-400"
|
||||
labelClassName="text-[10px] text-fg-muted group-hover:text-fg-secondary"
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
@@ -724,7 +724,7 @@ export function WebhookSettings() {
|
||||
onClick={() =>
|
||||
set({ headerRows: form.headerRows.filter((_, j) => j !== i) })
|
||||
}
|
||||
className="text-gray-600 hover:text-red-400 p-1"
|
||||
className="text-fg-muted hover:text-status-danger p-1"
|
||||
>
|
||||
<X className="w-3.5 h-3.5" />
|
||||
</button>
|
||||
@@ -734,7 +734,7 @@ export function WebhookSettings() {
|
||||
onClick={() =>
|
||||
set({ headerRows: [...form.headerRows, { key: "", value: "" }] })
|
||||
}
|
||||
className="inline-flex items-center gap-1 text-[10px] text-gray-500 hover:text-gray-300"
|
||||
className="inline-flex items-center gap-1 text-[10px] text-fg-muted hover:text-fg-secondary"
|
||||
>
|
||||
<Plus className="w-3 h-3" />
|
||||
{t("webhooks.addHeader")}
|
||||
@@ -752,7 +752,7 @@ export function WebhookSettings() {
|
||||
checked={form.scopeAll}
|
||||
onChange={(v) => set({ scopeAll: v })}
|
||||
label={t("webhooks.scopeAll")}
|
||||
labelClassName="text-[11px] text-gray-400 group-hover:text-gray-300"
|
||||
labelClassName="text-[11px] text-fg-secondary group-hover:text-fg-secondary"
|
||||
/>
|
||||
{!form.scopeAll && (
|
||||
<div className="mt-2 grid grid-cols-1 sm:grid-cols-2 gap-1">
|
||||
@@ -768,7 +768,7 @@ export function WebhookSettings() {
|
||||
})
|
||||
}
|
||||
label={rule.name}
|
||||
labelClassName="text-[11px] text-gray-400 group-hover:text-gray-300 truncate"
|
||||
labelClassName="text-[11px] text-fg-secondary group-hover:text-fg-secondary truncate"
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
@@ -777,14 +777,14 @@ export function WebhookSettings() {
|
||||
)}
|
||||
|
||||
<div className="flex items-center gap-3 pt-1">
|
||||
<label className="inline-flex items-center gap-2 text-[11px] text-gray-400 cursor-pointer">
|
||||
<label className="inline-flex items-center gap-2 text-[11px] text-fg-secondary cursor-pointer">
|
||||
<Toggle checked={form.enabled} onChange={(v) => set({ enabled: v })} />
|
||||
{t("webhooks.enabledOnSave")}
|
||||
</label>
|
||||
</div>
|
||||
|
||||
{formError && (
|
||||
<div className="flex items-center gap-1.5 text-[11px] text-red-400">
|
||||
<div className="flex items-center gap-1.5 text-[11px] text-status-danger">
|
||||
<AlertTriangle className="w-3.5 h-3.5" />
|
||||
{formError}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user