// رنگ اختصاصی هر دسته‌بندی ریشه، مشترک بین آیکون و قاب آن
export const CATEGORY_COLORS: Record<string, string> = {
    'real-estate': '#4f8cff',
    'vehicles': '#ff7043',
    'electronic-devices': '#7c4dff',
    'home-kitchen': '#26a69a',
    'apparel': '#ec407a',
    'artwork': '#ab47bc',
    'entertainment': '#da723b',
    'exhibitions': '#29b6f6',
    'free': '#66bb6a',
    'industrial-commercial': '#78909c',
    'jobs': '#5c6bc0',
    'me-Booth': '#ff8a65',
    'personal-stuff': '#8d6e63',
    'services': '#42a5f5',
    'social-services': '#ef5350',

    // دسته‌بندی‌های کسب‌وکار
    'real-state': '#4f8cff',
    'shop': '#ff8a65',
    'show-room': '#29b6f6',
    'university': '#7c4dff',
}

export const useCategoryColor = () => {
    const categoryColor = (slug: string | null | undefined) =>
        (slug && CATEGORY_COLORS[slug]) || '#ce571e'

    return { categoryColor, CATEGORY_COLORS }
}
