1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| const rarityConfig = { legendary: { name: '传说', color: 'text-yellow-500', bg: 'bg-yellow-500', gradient: 'from-yellow-400 via-yellow-500 to-yellow-600', glow: 'shadow-yellow-500/50', ring: 'ring-yellow-400', bgClass: 'bg-yellow-100 dark:bg-yellow-900/30', border: 'border-yellow-400', iconBg: 'from-yellow-400 to-yellow-600' }, epic: { name: '史诗', color: 'text-purple-500', bg: 'bg-purple-500', gradient: 'from-purple-400 via-purple-500 to-purple-600', glow: 'shadow-purple-500/50', ring: 'ring-purple-400', bgClass: 'bg-purple-100 dark:bg-purple-900/30', border: 'border-purple-400', iconBg: 'from-purple-400 to-purple-600' }, rare: { name: '稀有', color: 'text-blue-500', bg: 'bg-blue-500', gradient: 'from-blue-400 via-blue-500 to-blue-600', glow: 'shadow-blue-500/50', ring: 'ring-blue-400', bgClass: 'bg-blue-100 dark:bg-blue-900/30', border: 'border-blue-400', iconBg: 'from-blue-400 to-blue-600' }, uncommon: { name: '精良', color: 'text-green-500', bg: 'bg-green-500', gradient: 'from-green-400 via-green-500 to-green-600', glow: 'shadow-green-500/50', ring: 'ring-green-400', bgClass: 'bg-green-100 dark:bg-green-900/30', border: 'border-green-400', iconBg: 'from-green-400 to-green-600' }, common: { name: '普通', color: 'text-gray-500', bg: 'bg-gray-500', gradient: 'from-gray-400 via-gray-500 to-gray-600', glow: 'shadow-gray-500/50', ring: 'ring-gray-400', bgClass: 'bg-gray-100 dark:bg-gray-700/30', border: 'border-gray-400', iconBg: 'from-gray-400 to-gray-600' } }
|