fix(color): eliminate redundant dark: accent modifiers (R-8.29), resolve A-1/A-2/A-9 contrast issues, and implement C11-9 quality gate

This commit is contained in:
2026-08-20 22:42:26 +09:00
parent 7e431de1b7
commit a838af4b94
14 changed files with 190 additions and 69 deletions
@@ -11,8 +11,8 @@ export function ProjectPageView() {
<div className="flex flex-col sm:flex-row sm:items-end justify-between gap-4 border-b border-line pb-4">
<div>
<div className="flex items-center gap-3 mb-1">
<span className="h-px w-8 bg-cobalt-dark dark:bg-cobalt"></span>
<span className="font-mono text-xs tracking-widest uppercase text-cobalt-dark dark:text-cobalt font-bold">
<span className="h-px w-8 bg-cobalt-dark"></span>
<span className="font-mono text-xs tracking-widest uppercase text-cobalt-dark font-bold">
Key Initiatives
</span>
</div>
@@ -50,7 +50,7 @@ export function ProjectPageView() {
{proj.title}
</h3>
{proj.period && (
<span className="font-mono text-xs text-cobalt-dark dark:text-cobalt bg-ivory border border-line px-2 py-0.5 rounded shrink-0">
<span className="font-mono text-xs text-cobalt-dark bg-ivory border border-line px-2 py-0.5 rounded shrink-0">
{proj.period}
</span>
)}
@@ -85,12 +85,12 @@ export function ProjectPageView() {
) : proj.standardsTrack ? (
<div className="flex items-baseline justify-between gap-2">
<span className="text-ink-mute">Standards Track:</span>
<span className="text-cobalt-dark dark:text-cobalt font-bold">{proj.standardsTrack}</span>
<span className="text-cobalt-dark font-bold">{proj.standardsTrack}</span>
</div>
) : proj.standardsOrg ? (
<div className="flex items-baseline justify-between gap-2">
<span className="text-ink-mute">Organization:</span>
<span className="text-cobalt-dark dark:text-cobalt font-bold">{proj.standardsOrg}</span>
<span className="text-cobalt-dark font-bold">{proj.standardsOrg}</span>
</div>
) : null}