header: fixed #1d2724 title color (mode-independent)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-24 13:58:25 +00:00
co-authored by Claude Opus 4.8
parent 746a7b84a8
commit 496f80dd5c
@@ -26,7 +26,7 @@ function EditablePageTitle() {
onKeyDown={(ev) => {
if (ev.key === 'Enter' || ev.key === 'Escape') setEditing(false);
}}
className="pointer-events-auto max-w-[50vw] border-b border-duck-teal/50 bg-transparent text-center text-base font-bold text-duck-teal outline-none md:text-xl"
className="pointer-events-auto max-w-[50vw] border-b border-[#1d2724]/40 bg-transparent text-center text-base font-bold text-[#1d2724] outline-none md:text-xl"
/>
);
}
@@ -34,7 +34,7 @@ function EditablePageTitle() {
<button
onClick={() => setEditing(true)}
title="Click to rename this tab"
className="pointer-events-auto max-w-[50vw] cursor-text truncate text-base font-bold text-duck-teal transition-colors hover:text-duck-teal/80 md:text-xl"
className="pointer-events-auto max-w-[50vw] cursor-text truncate text-base font-bold text-[#1d2724] transition-opacity hover:opacity-70 md:text-xl"
>
{title}
</button>