@@ -56,7 +56,7 @@ export const TabsWithPersona = ({
5656 < div className = "tabs-with-persona" >
5757 { /* Custom Persona Header */ }
5858 < div className = "persona-tabs-header mb-8" >
59- < p className = "text-xs font-medium uppercase tracking-wider text-gray-500 dark:text-gray-600 mb-4" > { headerLabel } </ p >
59+ < p className = "text-xs font-medium uppercase tracking-wider text-gray-500 dark:text-gray-400 mb-4" > { headerLabel } </ p >
6060 < div className = "grid grid-cols-1 md:grid-cols-3 gap-3" >
6161 { options . map ( ( option ) => {
6262 const isSelected = selectedValue === option . value ;
@@ -70,14 +70,14 @@ export const TabsWithPersona = ({
7070 ${
7171 isSelected
7272 ? "border-primary bg-primary text-white shadow-lg scale-[1.02]"
73- : "border-border bg-card hover:border-gray-400 dark:hover:border-gray-500 hover:shadow-md"
73+ : "border-gray-300 dark: border-gray-600 bg-white dark:bg-gray-800 hover:border-gray-400 dark:hover:border-gray-400 hover:shadow-md"
7474 }
7575 ` }
7676 >
7777 < div
7878 className = { `
7979 text-3xl mb-3 w-9 h-9 rounded-lg flex items-center justify-center transition-all
80- ${ isSelected ? "bg-white/20" : "bg-gray-100 dark:bg-gray-800 " }
80+ ${ isSelected ? "bg-white/20" : "bg-gray-100 dark:bg-gray-700 " }
8181 ` }
8282 >
8383 { option . icon }
@@ -93,15 +93,15 @@ export const TabsWithPersona = ({
9393 < p
9494 className = { `
9595 text-sm mb-3 leading-relaxed transition-colors
96- ${ isSelected ? "text-white/80" : "text-gray-600 dark:text-gray-400 " }
96+ ${ isSelected ? "text-white/80" : "text-gray-600 dark:text-gray-300 " }
9797 ` }
9898 >
9999 { option . description }
100100 </ p >
101101 < span
102102 className = { `
103103 inline-block text-xs font-medium px-3 py-1 rounded-full transition-all
104- ${ isSelected ? "bg-white/20 text-white/90" : "bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400 " }
104+ ${ isSelected ? "bg-white/20 text-white/90" : "bg-gray-100 dark:bg-gray-700 text-gray-600 dark:text-gray-300 " }
105105 ` }
106106 >
107107 { option . tag }
0 commit comments