fix: replace remaining hardcoded brand-navy/white tokens with semantic tokens
Some checks failed
CI / Unit & Component Tests (push) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled

Fixes dark mode in enrich/done page (bg-white → bg-surface, text-brand-navy → text-ink,
border-brand-sand → border-line), enrich/[id] skip button (text-brand-navy/60 → text-ink-2),
and PanelHistory version list (divide-brand-sand → divide-line).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-03-28 23:50:21 +01:00
parent 06fbb2fe81
commit bf46fe6d8b
3 changed files with 4 additions and 4 deletions

View File

@@ -406,7 +406,7 @@ $effect(() => {
{/if} {/if}
{:else} {:else}
<!-- Version list with inline diff below each selected item --> <!-- Version list with inline diff below each selected item -->
<ul class="divide-brand-sand divide-y"> <ul class="divide-y divide-line">
{#each versions as v, i (v.id)} {#each versions as v, i (v.id)}
<li> <li>
<button <button

View File

@@ -135,7 +135,7 @@ let selectedReceivers = $state(untrack(() => doc.receivers ?? []));
<button <button
type="submit" type="submit"
form="skip-form" form="skip-form"
class="font-sans text-sm font-medium text-brand-navy/60 transition-colors hover:text-brand-navy" class="font-sans text-sm font-medium text-ink-2 transition-colors hover:text-ink"
> >
{m.enrich_skip()} {m.enrich_skip()}
</button> </button>

View File

@@ -4,7 +4,7 @@ import { m } from '$lib/paraglide/messages.js';
<div class="mx-auto max-w-4xl px-4 py-10"> <div class="mx-auto max-w-4xl px-4 py-10">
<div <div
class="border-brand-sand flex flex-col items-center justify-center rounded-sm border bg-white py-20 text-center shadow-sm" class="flex flex-col items-center justify-center rounded-sm border border-line bg-surface py-20 text-center shadow-sm"
> >
<img <img
src="/degruyter-icons/Simple/Large-32px/SVG/Action/Check/Check-Double-LG.svg" src="/degruyter-icons/Simple/Large-32px/SVG/Action/Check/Check-Double-LG.svg"
@@ -13,7 +13,7 @@ import { m } from '$lib/paraglide/messages.js';
class="mb-6 h-16 w-16" class="mb-6 h-16 w-16"
/> />
<h1 class="font-serif text-2xl font-medium text-brand-navy"> <h1 class="font-serif text-2xl font-medium text-ink">
{m.enrich_done_heading()} {m.enrich_done_heading()}
</h1> </h1>