@@ -94,8 +94,8 @@ export function ConversationTabs({
9494 key = { `sessions-${ conversation . id } -${ index } ` }
9595 className = { `group relative p-3 rounded-lg cursor-pointer border transition-all hover:shadow-sm ${
9696 isCurrentlySelected
97- ? 'bg-blue-50 border-blue-300 shadow-sm'
98- : 'bg-white border-gray-200 hover:bg-white '
97+ ? 'bg-primary/10 border-primary/30 shadow-sm'
98+ : 'bg-card border-border hover:bg-accent '
9999 } `}
100100 onClick = { ( ) => onSelectConversation ( conversation ) }
101101 >
@@ -104,22 +104,22 @@ export function ConversationTabs({
104104 < div className = "flex items-center gap-2 mb-1" >
105105 < Circle className = "h-3 w-3 text-green-500 fill-current flex-shrink-0" />
106106 < h4 className = { `text-sm font-medium ${
107- isCurrentlySelected ? 'text-blue-900 ' : 'text-gray-900 '
107+ isCurrentlySelected ? 'text-primary ' : 'text-foreground '
108108 } `} >
109109 { conversation . title }
110110 { isCurrentlySelected && (
111- < span className = "ml-1 text-xs text-blue-600 font-normal" >
111+ < span className = "ml-1 text-xs text-primary/80 font-normal" >
112112 (Current)
113113 </ span >
114114 ) }
115115 </ h4 >
116116 </ div >
117- < p className = "text-xs text-gray-500 font-mono truncate" >
117+ < p className = "text-xs text-muted-foreground font-mono truncate" >
118118 { conversation . id }
119119 </ p >
120120 < div className = "flex items-center justify-between mt-2" >
121121 < span className = "text-xs text-green-600" > Active</ span >
122- < span className = "text-xs text-gray-400 " >
122+ < span className = "text-xs text-muted-foreground/70 " >
123123 { conversation . messages . length } messages
124124 </ span >
125125 </ div >
@@ -129,7 +129,7 @@ export function ConversationTabs({
129129 < Button
130130 variant = "ghost"
131131 size = "sm"
132- className = "h-6 w-6 p-0 text-red-600 hover:text-red-700 "
132+ className = "h-6 w-6 p-0 text-destructive hover:text-destructive/80 "
133133 onClick = { ( e ) => {
134134 e . stopPropagation ( ) ;
135135 onKillSession ?.( conversation . id ) ;
@@ -160,10 +160,10 @@ export function ConversationTabs({
160160 </ TabsList >
161161
162162 < TabsContent value = "all" className = "flex-1 overflow-y-auto mt-0" >
163- < div className = "p-3 bg-white border-b" >
163+ < div className = "p-3 bg-background border-b" >
164164 < div className = "flex gap-2" >
165165 < div className = "relative flex-1" >
166- < Search className = "absolute left-3 top-1/2 transform -translate-y-1/2 h-3 w-3 text-gray-400 " />
166+ < Search className = "absolute left-3 top-1/2 transform -translate-y-1/2 h-3 w-3 text-muted-foreground " />
167167 < Input
168168 placeholder = "Search all conversations..."
169169 value = { searchQueries . all }
@@ -195,9 +195,9 @@ export function ConversationTabs({
195195 </ TabsContent >
196196
197197 < TabsContent value = "favorites" className = "flex-1 overflow-y-auto mt-0" >
198- < div className = "p-3 bg-white border-b" >
198+ < div className = "p-3 bg-background border-b" >
199199 < div className = "relative" >
200- < Search className = "absolute left-3 top-1/2 transform -translate-y-1/2 h-3 w-3 text-gray-400 " />
200+ < Search className = "absolute left-3 top-1/2 transform -translate-y-1/2 h-3 w-3 text-muted-foreground " />
201201 < Input
202202 placeholder = "Search favorite conversations..."
203203 value = { searchQueries . favorites }
@@ -219,9 +219,9 @@ export function ConversationTabs({
219219 </ TabsContent >
220220
221221 < TabsContent value = "sessions" className = "flex-1 overflow-y-auto mt-0" >
222- < div className = "p-3 bg-white border-b" >
222+ < div className = "p-3 bg-background border-b" >
223223 < div className = "relative" >
224- < Search className = "absolute left-3 top-1/2 transform -translate-y-1/2 h-3 w-3 text-gray-400 " />
224+ < Search className = "absolute left-3 top-1/2 transform -translate-y-1/2 h-3 w-3 text-muted-foreground " />
225225 < Input
226226 placeholder = "Search active sessions..."
227227 value = { searchQueries . sessions }
@@ -231,7 +231,7 @@ export function ConversationTabs({
231231 </ div >
232232 </ div >
233233 { filteredConversations . length === 0 ? (
234- < div className = "p-4 text-center text-gray-500 text-sm" >
234+ < div className = "p-4 text-center text-muted-foreground text-sm" >
235235 < p > No active sessions</ p >
236236 < p className = "text-xs mt-1" >
237237 Send a message to create a session
0 commit comments