@@ -197,7 +197,7 @@ export default function JobDetail() {
197197 return (
198198 < div class = "flex flex-col items-center justify-center h-full text-zinc-500 gap-3" >
199199 < p class = "text-base" > Job not found</ p >
200- < button class = "text-sm text-indigo -400 hover:text-indigo -300" onClick = { ( ) => navigate ( '/' ) } >
200+ < button class = "text-sm text-cyan -400 hover:text-cyan -300" onClick = { ( ) => navigate ( '/' ) } >
201201 Back to all jobs
202202 </ button >
203203 </ div >
@@ -207,7 +207,7 @@ export default function JobDetail() {
207207 if ( ! job ) {
208208 return (
209209 < div class = "flex items-center justify-center h-full" >
210- < div class = "w-6 h-6 border-2 border-zinc-700 border-t-indigo -500 rounded-full animate-spin" />
210+ < div class = "w-6 h-6 border-2 border-zinc-700 border-t-cyan -500 rounded-full animate-spin" />
211211 </ div >
212212 ) ;
213213 }
@@ -250,16 +250,16 @@ export default function JobDetail() {
250250 { ( activeRun || ! TERMINAL_STATES . has ( job . state ) || job . state === 'FAILED' ) && (
251251 < div class = "flex items-stretch gap-2" >
252252 { activeRun && (
253- < div class = "flex-1 min-w-0 rounded-lg border border-hermes-300 /30 bg-hermes-400 /10 px-3 py-2.5 flex items-center gap-2.5" >
254- < span class = "w-1.5 h-1.5 rounded-full bg-hermes -400 animate-pulse shrink-0" />
255- < span class = "text-xs text-hermes -400 font-mono" > { activeRun . phase } </ span >
253+ < div class = "flex-1 min-w-0 rounded-lg border border-green-500 /30 bg-green-500 /10 px-3 py-2.5 flex items-center gap-2.5" >
254+ < span class = "w-1.5 h-1.5 rounded-full bg-green -400 animate-pulse shrink-0" />
255+ < span class = "text-xs text-green -400 font-mono" > { activeRun . phase } </ span >
256256 { activeRun . model && (
257257 < span class = "text-xs text-zinc-500 truncate hidden sm:block" >
258258 { activeRun . model }
259259 </ span >
260260 ) }
261261 < button
262- class = "ml-auto shrink-0 text-xs font-medium text-hermes -400 hover:text-hermes -300 transition-colors"
262+ class = "ml-auto shrink-0 text-xs font-medium text-green -400 hover:text-green -300 transition-colors"
263263 onClick = { ( ) => navigate ( `/jobs/${ id } /runs/${ activeRun . id } ` ) }
264264 >
265265 Watch live →
@@ -315,7 +315,7 @@ export default function JobDetail() {
315315 { job . prNumber && (
316316 < a
317317 href = { job . prUrl ?? '#' }
318- class = { `shrink-0 hover:underline ${ job . prIsDraft ? 'text-zinc-500' : 'text-sky -400' } ` }
318+ class = { `shrink-0 hover:underline ${ job . prIsDraft ? 'text-zinc-500' : 'text-cyan -400' } ` }
319319 target = "_blank"
320320 rel = "noopener noreferrer"
321321 >
@@ -375,7 +375,7 @@ export default function JobDetail() {
375375 onInput = { ( e ) => setChangesNote ( ( e . target as HTMLTextAreaElement ) . value ) }
376376 placeholder = "Request changes (Markdown) — Hermes will revise and push an update…"
377377 rows = { 3 }
378- class = "w-full rounded-lg bg-zinc-900 border border-zinc-800 px-3 py-2 text-sm text-zinc-100 placeholder-zinc-600 focus:outline-none focus:border-indigo -600 resize-y"
378+ class = "w-full rounded-lg bg-zinc-900 border border-zinc-800 px-3 py-2 text-sm text-zinc-100 placeholder-zinc-600 focus:outline-none focus:border-cyan -600 resize-y"
379379 />
380380 < button
381381 disabled = { actionPending || changesNote . trim ( ) . length === 0 }
0 commit comments