diff --git a/frontend/src/components/session/BranchRevivalCard.tsx b/frontend/src/components/session/BranchRevivalCard.tsx
index 8fea06c1..4bd9ad4f 100644
--- a/frontend/src/components/session/BranchRevivalCard.tsx
+++ b/frontend/src/components/session/BranchRevivalCard.tsx
@@ -19,7 +19,7 @@ export function BranchRevivalCard({ branch, evidenceSource }: BranchRevivalCardP
{branch.evidence_description}
)}
{evidenceSource && (
- Evidence from: {evidenceSource.label}
+ Evidence from: {evidenceSource.label}
)}
)
diff --git a/frontend/src/components/session/HandoffModal.tsx b/frontend/src/components/session/HandoffModal.tsx
index d01ad57b..efe27e87 100644
--- a/frontend/src/components/session/HandoffModal.tsx
+++ b/frontend/src/components/session/HandoffModal.tsx
@@ -79,7 +79,7 @@ export function HandoffModal({ onClose, onSubmit }: HandoffModalProps) {
'flex-1 rounded-[5px] border px-3 py-2 text-sm font-medium transition-colors',
intent === 'park'
? 'border-accent bg-accent-dim text-accent-text'
- : 'border-default bg-transparent text-secondary hover:bg-elevated hover:text-primary'
+ : 'border-default bg-transparent text-muted-foreground hover:bg-elevated hover:text-primary'
)}
>
Park
@@ -91,13 +91,13 @@ export function HandoffModal({ onClose, onSubmit }: HandoffModalProps) {
'flex-1 rounded-[5px] border px-3 py-2 text-sm font-medium transition-colors',
intent === 'escalate'
? 'border-accent bg-accent-dim text-accent-text'
- : 'border-default bg-transparent text-secondary hover:bg-elevated hover:text-primary'
+ : 'border-default bg-transparent text-muted-foreground hover:bg-elevated hover:text-primary'
)}
>
Escalate
-
+
{intent === 'park'
? 'Park this session to resume later or hand to another engineer.'
: 'Escalate to a senior engineer with full context and branch history.'}
@@ -148,7 +148,7 @@ export function HandoffModal({ onClose, onSubmit }: HandoffModalProps) {
type="button"
onClick={onClose}
disabled={isSubmitting}
- className="rounded-[5px] border border-default px-4 py-2 text-sm text-secondary hover:bg-elevated hover:text-primary transition-colors disabled:opacity-50"
+ className="rounded-[5px] border border-default px-4 py-2 text-sm text-muted-foreground hover:bg-elevated hover:text-primary transition-colors disabled:opacity-50"
>
Cancel
diff --git a/frontend/src/components/session/ResolutionOutputPanel.tsx b/frontend/src/components/session/ResolutionOutputPanel.tsx
index 8928f86b..df28957d 100644
--- a/frontend/src/components/session/ResolutionOutputPanel.tsx
+++ b/frontend/src/components/session/ResolutionOutputPanel.tsx
@@ -130,7 +130,7 @@ export function ResolutionOutputPanel({ sessionId, className }: ResolutionOutput
'flex items-center gap-1.5 px-3 py-2.5 text-xs font-medium transition-colors border-b-2 -mb-px',
isActive
? 'border-accent text-accent-text'
- : 'border-transparent text-secondary hover:text-primary hover:border-hover'
+ : 'border-transparent text-muted-foreground hover:text-primary hover:border-hover'
)}
>
@@ -184,7 +184,7 @@ export function ResolutionOutputPanel({ sessionId, className }: ResolutionOutput
type="button"
onClick={handleEditToggle}
disabled={isSaving}
- className="rounded-[5px] border border-default px-3 py-1.5 text-xs text-secondary hover:bg-elevated hover:text-primary transition-colors disabled:opacity-50"
+ className="rounded-[5px] border border-default px-3 py-1.5 text-xs text-muted-foreground hover:bg-elevated hover:text-primary transition-colors disabled:opacity-50"
>
Cancel
@@ -196,7 +196,7 @@ export function ResolutionOutputPanel({ sessionId, className }: ResolutionOutput
onClick={handleEditToggle}
disabled={!activeOutput}
className={cn(
- 'flex items-center gap-1.5 rounded-[5px] border border-default px-3 py-1.5 text-xs text-secondary',
+ 'flex items-center gap-1.5 rounded-[5px] border border-default px-3 py-1.5 text-xs text-muted-foreground',
'hover:bg-elevated hover:text-primary transition-colors disabled:opacity-40'
)}
>
@@ -211,7 +211,7 @@ export function ResolutionOutputPanel({ sessionId, className }: ResolutionOutput
'flex items-center gap-1.5 rounded-[5px] border border-default px-3 py-1.5 text-xs transition-colors disabled:opacity-40',
copied
? 'border-success text-success'
- : 'text-secondary hover:bg-elevated hover:text-primary'
+ : 'text-muted-foreground hover:bg-elevated hover:text-primary'
)}
>
{copied ? : }
@@ -225,7 +225,7 @@ export function ResolutionOutputPanel({ sessionId, className }: ResolutionOutput
'flex items-center gap-1.5 rounded-[5px] border border-default px-3 py-1.5 text-xs transition-colors disabled:opacity-40',
activeOutput?.status === 'pushed'
? 'border-success text-success'
- : 'text-secondary hover:bg-elevated hover:text-primary'
+ : 'text-muted-foreground hover:bg-elevated hover:text-primary'
)}
>
diff --git a/frontend/src/index.css b/frontend/src/index.css
index 74d93c94..14daec72 100644
--- a/frontend/src/index.css
+++ b/frontend/src/index.css
@@ -20,7 +20,7 @@
/* ── Text colors ───────────────────────────────── */
--color-text-heading: #f0f2f5;
--color-text-primary: #e2e5eb;
- --color-text-secondary: #a0a7b8;
+ --color-text-secondary: #848b9b;
--color-text-muted: #4f5666;
--color-text-rail-label: #e2e5eb;
@@ -54,7 +54,7 @@
--color-secondary: #2e3140;
--color-secondary-foreground: #e2e5eb;
--color-muted: #2e3140;
- --color-muted-foreground: #a0a7b8;
+ --color-muted-foreground: #848b9b;
--color-accent-tw: #2e3140;
--color-accent-foreground: #e2e5eb;
--color-destructive: #f87171;
diff --git a/frontend/src/pages/DevBranchingPage.tsx b/frontend/src/pages/DevBranchingPage.tsx
index ac573b99..d2da963e 100644
--- a/frontend/src/pages/DevBranchingPage.tsx
+++ b/frontend/src/pages/DevBranchingPage.tsx
@@ -324,7 +324,7 @@ function MockResolutionPanel({ outputs }: { outputs: ResolutionOutputResponse[]
'flex items-center gap-1.5 px-3 py-2.5 text-xs font-medium transition-colors border-b-2 -mb-px',
isActive
? 'border-accent text-accent-text'
- : 'border-transparent text-secondary hover:text-primary hover:border-hover'
+ : 'border-transparent text-muted-foreground hover:text-primary hover:border-hover'
)}
>
@@ -371,7 +371,7 @@ function MockResolutionPanel({ outputs }: { outputs: ResolutionOutputResponse[]
@@ -382,7 +382,7 @@ function MockResolutionPanel({ outputs }: { outputs: ResolutionOutputResponse[]
type="button"
onClick={handleEditToggle}
disabled={!activeOutput}
- className="flex items-center gap-1.5 rounded-[5px] border border-default px-3 py-1.5 text-xs text-secondary hover:bg-elevated hover:text-primary transition-colors disabled:opacity-40"
+ className="flex items-center gap-1.5 rounded-[5px] border border-default px-3 py-1.5 text-xs text-muted-foreground hover:bg-elevated hover:text-primary transition-colors disabled:opacity-40"
>
Edit
@@ -392,7 +392,7 @@ function MockResolutionPanel({ outputs }: { outputs: ResolutionOutputResponse[]
disabled={!activeOutput}
className={cn(
'flex items-center gap-1.5 rounded-[5px] border border-default px-3 py-1.5 text-xs transition-colors disabled:opacity-40',
- copied ? 'border-success text-success' : 'text-secondary hover:bg-elevated hover:text-primary'
+ copied ? 'border-success text-success' : 'text-muted-foreground hover:bg-elevated hover:text-primary'
)}
>
{copied ? : }
@@ -402,7 +402,7 @@ function MockResolutionPanel({ outputs }: { outputs: ResolutionOutputResponse[]
type="button"
onClick={() => toast.success('Pushed to PSA (mock)')}
disabled={!activeOutput}
- className="flex items-center gap-1.5 rounded-[5px] border border-default px-3 py-1.5 text-xs text-secondary hover:bg-elevated hover:text-primary transition-colors disabled:opacity-40"
+ className="flex items-center gap-1.5 rounded-[5px] border border-default px-3 py-1.5 text-xs text-muted-foreground hover:bg-elevated hover:text-primary transition-colors disabled:opacity-40"
>
Push to PSA
@@ -469,7 +469,7 @@ export default function DevBranchingPage() {
toBranch={activeBranch}
/>
) : (
-
Click a branch in the sidebar to see the transition bar.
+ Click a branch in the sidebar to see the transition bar.
)}
@@ -519,34 +519,34 @@ export default function DevBranchingPage() {
- Label:{' '}
+ Label:{' '}
{activeBranch.label}
- Status:{' '}
+ Status:{' '}
{activeBranch.status}
- Steps:{' '}
+ Steps:{' '}
{activeBranch.step_count}
- Order:{' '}
+ Order:{' '}
{activeBranch.branch_order}
{activeBranch.status_reason && (
- Reason:{' '}
+ Reason:{' '}
{activeBranch.status_reason}
)}
{activeBranch.context_summary && (
- Tried:{' '}
+ Tried:{' '}
{activeBranch.context_summary.tried.join(', ')}
- Concluded:{' '}
+ Concluded:{' '}
{activeBranch.context_summary.concluded}
)}
@@ -570,7 +570,7 @@ export default function DevBranchingPage() {
function SectionLabel({ children }: { children: React.ReactNode }) {
return (
-
+
{children}
)
diff --git a/frontend/src/pages/SessionQueuePage.tsx b/frontend/src/pages/SessionQueuePage.tsx
index 8a3f2313..cf6809ff 100644
--- a/frontend/src/pages/SessionQueuePage.tsx
+++ b/frontend/src/pages/SessionQueuePage.tsx
@@ -37,7 +37,7 @@ export default function SessionQueuePage() {
{item.problem_summary || 'Untitled session'}
{item.priority === 'elevated' && Elevated}
- {item.engineer_notes && {item.engineer_notes}
}
+ {item.engineer_notes && {item.engineer_notes}
}
{new Date(item.created_at).toLocaleString()}