fix(ci): theme-token conventions in field badges (white keyword, --text-muted) + roadmap plugin schema literal 107→108

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-06-04 14:43:54 -07:00
parent 021409d445
commit 0451172bfa
4 changed files with 9 additions and 9 deletions

View File

@@ -1465,7 +1465,7 @@
border: 1px solid var(--border-color, #2a2d34);
border-radius: 999px;
background: var(--chip-bg, #1c1f26);
color: var(--text-secondary, #b4b8c0);
color: var(--text-muted, #b4b8c0);
font-size: 11px;
line-height: 1.5;
max-width: 16ch;

View File

@@ -329,7 +329,7 @@ function renderCardFieldBadge(
key={field.id}
className="card-field-badge card-field-badge--enum"
title={`${field.name}: ${labelOf(value)}`}
style={color ? { backgroundColor: color, borderColor: color, color: "#fff" } : undefined}
style={color ? { backgroundColor: color, borderColor: color, color: "white" } : undefined}
>
{labelOf(value)}
</span>
@@ -346,7 +346,7 @@ function renderCardFieldBadge(
<span
key={v}
className="card-field-badge-token"
style={color ? { backgroundColor: color, borderColor: color, color: "#fff" } : undefined}
style={color ? { backgroundColor: color, borderColor: color, color: "white" } : undefined}
>
{labelOf(v)}
</span>

View File

@@ -16,7 +16,7 @@
.task-field-label {
font-size: 12px;
font-weight: 600;
color: var(--text-secondary, #8a8f98);
color: var(--text-muted, #8a8f98);
text-transform: uppercase;
letter-spacing: 0.02em;
}
@@ -70,7 +70,7 @@
border: 1px solid var(--border-color, #2a2d34);
border-radius: 999px;
background: var(--chip-bg, #1c1f26);
color: var(--text-secondary, #b4b8c0);
color: var(--text-muted, #b4b8c0);
font-size: 12px;
cursor: pointer;
transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
@@ -183,7 +183,7 @@
padding: 4px 0;
background: none;
border: none;
color: var(--text-secondary, #8a8f98);
color: var(--text-muted, #8a8f98);
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
@@ -209,6 +209,6 @@
.task-field-orphaned-value {
font-size: 13px;
color: var(--text-secondary, #b4b8c0);
color: var(--text-muted, #b4b8c0);
word-break: break-word;
}