@@ -6,16 +6,16 @@ type ComparisonTableProps = {
66
77export function ComparisonTable ( { rows } : ComparisonTableProps ) {
88 return (
9- < section className = "rounded-lg border border-slate-200 bg-white shadow-sm" >
10- < div className = "border-b border-slate-200 px-5 py-4" >
11- < h3 className = "text-base font-semibold text-slate-950 " > Comparison</ h3 >
12- < p className = "mt-1 text-sm text-slate-600 " >
9+ < section className = "rounded-lg border border-[#e5e0d8] bg-white shadow-sm" >
10+ < div className = "border-b border-[#e5e0d8] px-5 py-4" >
11+ < h3 className = "text-xl font-bold text-[#1f2933] " > Comparison</ h3 >
12+ < p className = "mt-1 text-sm text-[#536079] " >
1313 Ranked by lower confidence bound, not raw score.
1414 </ p >
1515 </ div >
1616 < div className = "overflow-x-auto" >
1717 < table className = "min-w-[900px] text-left text-sm" >
18- < thead className = "bg-slate-50 text-xs uppercase text-slate-500" >
18+ < thead className = "bg-[#f7f4ef] text-xs uppercase text-slate-500" >
1919 < tr >
2020 < th className = "px-5 py-3" > Idea</ th >
2121 < th className = "px-5 py-3" > Score</ th >
@@ -28,18 +28,18 @@ export function ComparisonTable({ rows }: ComparisonTableProps) {
2828 < th className = "px-5 py-3" > Evidence Gap</ th >
2929 </ tr >
3030 </ thead >
31- < tbody className = "divide-y divide-slate-100 " >
31+ < tbody className = "divide-y divide-[#e5e0d8] " >
3232 { rows . map ( ( row ) => (
3333 < tr key = { row . ideaName } >
34- < td className = "px-5 py-4 font-semibold text-slate-950 " > { row . ideaName } </ td >
35- < td className = "px-5 py-4 text-slate-700 " > { row . score } </ td >
36- < td className = "px-5 py-4 text-slate-700 " > { row . range } </ td >
37- < td className = "px-5 py-4 text-slate-700 " > { row . rankBasis } </ td >
38- < td className = "px-5 py-4 text-slate-700 " > { row . confidence } </ td >
39- < td className = "px-5 py-4 text-slate-700 " > { row . strongestPillar } </ td >
40- < td className = "px-5 py-4 text-slate-700 " > { row . weakestPillar } </ td >
41- < td className = "px-5 py-4 text-slate-700 " > { row . bestChannel } </ td >
42- < td className = "px-5 py-4 text-slate-700 " > { row . evidenceGap } </ td >
34+ < td className = "px-5 py-4 font-semibold text-[#1f2933] " > { row . ideaName } </ td >
35+ < td className = "px-5 py-4 text-[#536079] " > { row . score } </ td >
36+ < td className = "px-5 py-4 text-[#536079] " > { row . range } </ td >
37+ < td className = "px-5 py-4 text-[#536079] " > { row . rankBasis } </ td >
38+ < td className = "px-5 py-4 text-[#536079] " > { row . confidence } </ td >
39+ < td className = "px-5 py-4 text-[#536079] " > { row . strongestPillar } </ td >
40+ < td className = "px-5 py-4 text-[#536079] " > { row . weakestPillar } </ td >
41+ < td className = "px-5 py-4 text-[#536079] " > { row . bestChannel } </ td >
42+ < td className = "px-5 py-4 text-[#536079] " > { row . evidenceGap } </ td >
4343 </ tr >
4444 ) ) }
4545 </ tbody >
0 commit comments