export const getColor = (index: number): string => { const colors = [ "bg-fuschia-40", "bg-pink-40", "bg-orange-40", "bg-teal-40", "bg-cyan-40", "bg-blue-40", "bg-indigo-40", ] return colors[index % colors.length] }