@@ -142,7 +142,7 @@ <h3 class="text-lg font-semibold text-[var(--color-text-primary)] mb-4 flex item
142142 < span > Whisper</ span >
143143 </ button >
144144 < button @click ="filterByTerm('object-detection') "
145- class ="flex items-center justify-center rounded-lg px-4 py-3 text-sm font-semibold bg-[var(--color-error)] /20 hover:bg-[var(--color-error)] /30 text-[var(--color-error)] border border-[var(--color-error-light)] transition-colors ">
145+ class ="flex items-center justify-center rounded-lg px-4 py-3 text-sm font-semibold bg-red-600 /20 hover:bg-red-600 /30 text-red-300 border border-red-500/30 transition-colors ">
146146 < i class ="fas fa-eye mr-2 "> </ i >
147147 < span > Vision</ span >
148148 </ button >
@@ -286,28 +286,28 @@ <h3 class="text-lg font-semibold text-[var(--color-text-primary)] mb-4 flex item
286286 < td class ="px-6 py-4 ">
287287 < div class ="flex items-center justify-end gap-2 ">
288288 <!-- Info Button -->
289- < button @click ="openModal(model) "
290- class ="btn-secondary text-xs px-3 py-1.5 "
289+ < button @click ="openModal(model) "
290+ class ="inline-flex items-center px-3 py-1.5 rounded-lg bg-[#1E293B] hover:bg-[#38BDF8]/20 text-xs font-medium text-[#E5E7EB] transition duration-200 border border-[#38BDF8]/30 "
291291 title ="View details ">
292292 < i class ="fas fa-info-circle "> </ i >
293293 </ button >
294-
294+
295295 <!-- Installed State Actions -->
296296 < template x-if ="!model.processing && model.installed ">
297297 < div class ="flex gap-2 ">
298- < button @click ="reinstallModel(model.id) "
299- class ="btn-primary text-xs px-3 py-1.5 "
298+ < button @click ="reinstallModel(model.id) "
299+ class ="inline-flex items-center px-3 py-1.5 rounded-lg bg-[#38BDF8] hover:bg-[#38BDF8]/80 text-xs font-medium text-white transition duration-200 "
300300 title ="Reinstall ">
301301 < i class ="fa-solid fa-arrow-rotate-right "> </ i >
302302 </ button >
303- < button @click ="deleteModel(model.id) "
304- class ="inline-flex items-center px-3 py-1.5 rounded-lg bg-[var(--color-error)] hover:bg-[var(--color-error)] text-xs font-medium text-white transition duration-200 "
303+ < button @click ="deleteModel(model.id) "
304+ class ="inline-flex items-center px-3 py-1.5 rounded-lg bg-red-600 hover:bg-red-700 text-xs font-medium text-white transition duration-200 "
305305 title ="Delete ">
306306 < i class ="fa-solid fa-trash "> </ i >
307307 </ button >
308308 </ div >
309309 </ template >
310-
310+
311311 <!-- Not Installed State Actions -->
312312 < template x-if ="!model.processing && !model.installed ">
313313 < div class ="flex gap-2 ">
@@ -316,8 +316,8 @@ <h3 class="text-lg font-semibold text-[var(--color-text-primary)] mb-4 flex item
316316 title ="Get config ">
317317 < i class ="fa-solid fa-file-code "> </ i >
318318 </ button >
319- < button @click ="installModel(model.id) "
320- class ="btn-primary text-xs px-3 py-1.5 "
319+ < button @click ="installModel(model.id) "
320+ class ="inline-flex items-center px-3 py-1.5 rounded-lg bg-[#38BDF8] hover:bg-[#38BDF8]/80 text-xs font-medium text-white transition duration-200 "
321321 title ="Install ">
322322 < i class ="fa-solid fa-download "> </ i >
323323 </ button >
0 commit comments