文字游戏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
666 B

2 weeks ago
export const ICONS = {
dashboard: '📊',
equipment: '⚔️',
level: '📈',
spirit: '✨',
pill: '💊',
bag:'🎒',
mission: '📜',
reward: {
pill: '💊',
equipment: '⚔️',
experience: '⭐',
money: '💰',
bag:'👜',
default: '🎁'
}
}
export const COLORS = {
equipment: '#a855f7',
level: '#f59e0b',
spirit: '#06b6d4',
pill: '#22c55e',
mission: '#3b82f6',
dashboard: '#8b5cf6',
rarity: {
common: '#9ca3af',
rare: '#22c55e',
epic: '#3b82f6',
legendary: '#f59e0b'
},
difficulty: {
easy: '#22c55e',
normal: '#f59e0b',
hard: '#ef4444',
purgatory: '#dc2626'
}
}