diff --git a/web/src/lib/components/AppHeader.svelte b/web/src/lib/components/AppHeader.svelte index d94e64c..183c301 100644 --- a/web/src/lib/components/AppHeader.svelte +++ b/web/src/lib/components/AppHeader.svelte @@ -216,7 +216,7 @@ title="Issues — standing problems in the visible inventory" class="relative rounded p-1.5 hover:bg-side-hover {open ? 'bg-side-hover text-white' - : 'text-slate-300'}" + : 'text-side-dim'}" > {#if issues.length > 0} @@ -273,7 +273,7 @@ class="relative flex items-center gap-1.5 rounded border border-side-active px-2.5 py-1 text-xs font-medium hover:bg-side-hover {page .url.pathname === '/changes' ? 'bg-side-hover text-white' - : 'text-slate-200'}" + : 'text-side-ink'}" > Review changes {#if inFlight > 0} @@ -288,7 +288,7 @@ {#snippet trigger({ open, toggle })} diff --git a/web/src/lib/components/ConsolePreview.svelte b/web/src/lib/components/ConsolePreview.svelte index c5aae94..2cf42ca 100644 --- a/web/src/lib/components/ConsolePreview.svelte +++ b/web/src/lib/components/ConsolePreview.svelte @@ -48,7 +48,7 @@ onclick={onopen} title="Open the live console" style:aspect-ratio={aspect} - class="group relative block w-full max-w-xl overflow-hidden rounded border border-line bg-slate-900 xl:w-auto xl:shrink-0" + class="group relative block w-full max-w-xl overflow-hidden rounded border border-line bg-[#151515] xl:w-auto xl:shrink-0" class:hidden={failed} >
- + - Ctrl K
diff --git a/web/src/lib/components/ToastHost.svelte b/web/src/lib/components/ToastHost.svelte index a0e3582..449c7c3 100644 --- a/web/src/lib/components/ToastHost.svelte +++ b/web/src/lib/components/ToastHost.svelte @@ -14,7 +14,7 @@ {#if t.kind === 'success'} {:else if t.kind === 'error'} {:else if t.kind === 'warning'} - {:else}{/if} + {:else}{/if} {t.msg} {#if t.action} {@const action = t.action} @@ -23,7 +23,7 @@ action.run(); ui.dismissToast(t.id); }} - class="shrink-0 rounded border border-slate-500 px-2 py-0.5 text-xs font-medium hover:bg-slate-700" + class="shrink-0 rounded border border-side-active px-2 py-0.5 text-xs font-medium hover:bg-side-hover" > {action.label} @@ -31,7 +31,7 @@ {/each}