From 6564272987f7ebe28d80e1693b6f716957df8145 Mon Sep 17 00:00:00 2001 From: zenchantlive Date: Thu, 26 Feb 2026 16:04:19 -0800 Subject: [PATCH] refactor(theme): migrate high-priority components to new token system - social-card.tsx: status colors, borders, surfaces - assignment-panel.tsx: all hardcoded hex colors replaced - graph-node-card.tsx: node styles, borders, glows, text colors --- src/components/graph/assignment-panel.tsx | 98 +++++++++++------------ src/components/graph/graph-node-card.tsx | 62 +++++++------- src/components/social/social-card.tsx | 68 ++++++++-------- 3 files changed, 114 insertions(+), 114 deletions(-) diff --git a/src/components/graph/assignment-panel.tsx b/src/components/graph/assignment-panel.tsx index 0f0e65d..5aea05f 100644 --- a/src/components/graph/assignment-panel.tsx +++ b/src/components/graph/assignment-panel.tsx @@ -244,10 +244,10 @@ export function AssignmentPanel({ selectedIssue, projectRoot, issues, epicId }: }; const renderTaskItem = (issue: BeadIssue, showAssignButton: boolean = false, archetypeBadges: AgentArchetype[] = []) => ( -
+
-
{issue.id}
-
{truncateTitle(issue.title)}
+
{issue.id}
+
{truncateTitle(issue.title)}
{archetypeBadges.length > 0 && (
@@ -269,17 +269,17 @@ export function AssignmentPanel({ selectedIssue, projectRoot, issues, epicId }:
{quickAssignDropdown === issue.id && ( -
+
{archetypes.map((a: AgentArchetype) => ( @@ -296,14 +296,14 @@ export function AssignmentPanel({ selectedIssue, projectRoot, issues, epicId }:
@@ -425,7 +425,7 @@ export function AssignmentPanel({ selectedIssue, projectRoot, issues, epicId }:
) : (
-
+
No template assigned