@@ -95,10 +95,10 @@ export function ProgressTerminal({
9595 return (
9696 < div className = "h-full flex flex-col rounded-lg border bg-white overflow-hidden" >
9797 { /* Header */ }
98- < div className = "px-5 py-4 border-b bg-gradient-to-r from-indigo-50 to-white" >
98+ < div className = "px-5 py-4 border-b bg-gradient-to-r from-[#D4714E]/5 to-white" >
9999 < div className = "flex items-center justify-between mb-1" >
100100 < h3 className = "font-semibold text-slate-800" > Analyzing Video</ h3 >
101- < span className = "text-sm font-medium text-indigo-600 tabular-nums" >
101+ < span className = "text-sm font-medium text-[#D4714E] tabular-nums" >
102102 { Math . round ( progress ) } %
103103 </ span >
104104 </ div >
@@ -129,7 +129,7 @@ export function ProgressTerminal({
129129 className = { cn (
130130 "h-8 w-8 rounded-full flex items-center justify-center flex-shrink-0 transition-all" ,
131131 status === "complete" && "bg-emerald-100 text-emerald-600" ,
132- status === "active" && "bg-indigo-100 text-indigo-600 " ,
132+ status === "active" && "bg-[#D4714E]/10 text-[#D4714E] " ,
133133 status === "error" && "bg-red-100 text-red-600" ,
134134 status === "pending" && "bg-slate-100 text-slate-400"
135135 ) }
@@ -158,7 +158,7 @@ export function ProgressTerminal({
158158 className = { cn (
159159 "text-sm font-medium leading-tight" ,
160160 status === "complete" && "text-emerald-700" ,
161- status === "active" && "text-indigo-700 " ,
161+ status === "active" && "text-[#B85D3E] " ,
162162 status === "error" && "text-red-700" ,
163163 status === "pending" && "text-slate-400"
164164 ) }
@@ -176,21 +176,21 @@ export function ProgressTerminal({
176176
177177 { /* Show progress for extracting/analyzing stages */ }
178178 { status === "active" && stage . id === "extracting_comments" && commentsFound !== undefined && (
179- < p className = "text-xs mt-1 text-indigo-600 font-medium tabular-nums" >
179+ < p className = "text-xs mt-1 text-[#D4714E] font-medium tabular-nums" >
180180 { commentsFound . toLocaleString ( ) } comments found
181181 </ p >
182182 ) }
183183 { status === "active" && stage . id === "analyzing_sentiment" && commentsAnalyzed !== undefined && commentsFound !== undefined && (
184184 < div className = "mt-1.5" >
185185 < div className = "flex items-center justify-between text-xs mb-1" >
186186 < span className = "text-slate-500" > Processing comments</ span >
187- < span className = "text-indigo-600 font-medium tabular-nums" >
187+ < span className = "text-[#D4714E] font-medium tabular-nums" >
188188 { commentsAnalyzed } /{ commentsFound }
189189 </ span >
190190 </ div >
191191 < div className = "h-1.5 bg-slate-100 rounded-full overflow-hidden" >
192192 < div
193- className = "h-full bg-indigo-500 rounded-full transition-all duration-300"
193+ className = "h-full bg-[#D4714E] rounded-full transition-all duration-300"
194194 style = { { width : `${ commentsFound > 0 ? ( commentsAnalyzed / commentsFound ) * 100 : 0 } %` } }
195195 />
196196 </ div >
@@ -205,11 +205,11 @@ export function ProgressTerminal({
205205
206206 { /* Current Stage Highlight + Cancel Button */ }
207207 { currentStageInfo && currentStage !== "complete" && currentStage !== "error" && (
208- < div className = "px-5 py-3 border-t bg-indigo-50 " >
208+ < div className = "px-5 py-3 border-t bg-[#D4714E]/5 " >
209209 < div className = "flex items-center justify-between" >
210210 < div className = "flex items-center gap-2" >
211- < Loader2 className = "h-4 w-4 text-indigo-600 animate-spin" />
212- < span className = "text-sm text-indigo-700 font-medium" >
211+ < Loader2 className = "h-4 w-4 text-[#D4714E] animate-spin" />
212+ < span className = "text-sm text-[#B85D3E] font-medium" >
213213 { currentStageInfo . label } ...
214214 </ span >
215215 </ div >
0 commit comments