@@ -31,33 +31,33 @@ export function WindowSelectionPanel() {
3131 } ;
3232
3333 return (
34- < section className = "pointer-events-auto flex max-h-full min-h-48 w-[480px] flex-col items-stretch justify-start rounded-xl border border-border/30 bg-zinc-50 /80 shadow-md backdrop-blur-md" >
34+ < section className = "pointer-events-auto flex max-h-full min-h-48 w-[480px] flex-col items-stretch justify-start rounded-xl border border-border/30 bg-background /80 shadow-md backdrop-blur-md" >
3535 < div className = "flex items-center justify-between px-4 pt-3 pb-3" >
36- < h2 className = "font-medium text-base text-zinc-950 " >
36+ < h2 className = "font-medium text-base text-foreground " >
3737 Select IDE Window
3838 </ h2 >
3939 </ div >
4040
41- < div className = "flex flex-col border-border/30 border-t px-4 py-3 text-zinc-950 " >
41+ < div className = "flex flex-col border-border/30 border-t px-4 py-3 text-foreground " >
4242 < div className = "space-y-3" >
4343 < div className = "flex items-start justify-between gap-4" >
4444 < div className = "flex-1" >
4545 < div className = "mb-1 flex items-center gap-2" >
4646 < label
4747 htmlFor = "window-selection-select"
48- className = "font-medium text-sm text-zinc-700 "
48+ className = "font-medium text-foreground text-sm "
4949 >
5050 IDE Window
5151 </ label >
5252 < button
5353 type = "button"
5454 onClick = { handleRefresh }
55- className = "border-none bg-transparent p-0 font-normal text-xs text-zinc-500 hover:text-zinc-700 "
55+ className = "border-none bg-transparent p-0 font-normal text-muted-foreground text-xs hover:text-foreground "
5656 >
5757 { showRefreshed ? 'Refreshed' : 'Refresh' }
5858 </ button >
5959 </ div >
60- < p className = "text-xs text-zinc-600 leading-relaxed" >
60+ < p className = "text-muted-foreground text-xs leading-relaxed" >
6161 Connect to your code editor workspace.
6262 </ p >
6363 </ div >
@@ -89,27 +89,27 @@ export function WindowSelectionPanel() {
8989 </ p >
9090 ) }
9191 { ! isDiscovering && windows . length === 0 && ! discoveryError && (
92- < p className = "text-sm text-zinc-500 " >
92+ < p className = "text-muted-foreground text-sm " >
9393 No IDE windows found. Make sure the Stagewise extension is
9494 installed and running.
9595 </ p >
9696 ) }
9797
9898 { selectedSession && (
99- < div className = "rounded-lg bg-zinc-100 /90 p-3" >
100- < p className = "text-sm text-zinc-800 " >
99+ < div className = "rounded-lg bg-muted /90 p-3" >
100+ < p className = "text-foreground text-sm " >
101101 < span className = "font-medium" > Connected:</ span > { ' ' }
102102 { selectedSession . displayName }
103103 </ p >
104- < p className = "mt-1 text-xs text-zinc-600 " >
104+ < p className = "mt-1 text-muted-foreground text-xs " >
105105 Session ID: { selectedSession . sessionId . substring ( 0 , 8 ) } ...
106106 </ p >
107107 </ div >
108108 ) }
109109
110110 { ! selectedSession && windows . length > 0 && (
111- < div className = "rounded-lg border border-zinc-300/50 bg-zinc-100 /90 p-3" >
112- < p className = "text-sm text-zinc-700 " >
111+ < div className = "rounded-lg border border-border bg-muted /90 p-3" >
112+ < p className = "text-foreground text-sm " >
113113 < span className = "font-medium" > No window selected:</ span > Please
114114 select an IDE window above to connect.
115115 </ p >
0 commit comments