export const categoryColorMap = {
    VERY_POOR: '#CC304C',
    POOR: '#F53658',
    FAIR: '#FE7811',
    GOOD: '#06B219',
    EXCELLENT: '#25956A',
    NA: '#333'
};

export const getRating = (score: number) => {
    if (score >= 781) return { text: 'EXCELLENT', color: categoryColorMap.EXCELLENT };
    if (score >= 661) return { text: 'GOOD', color: categoryColorMap.GOOD };
    if (score >= 601) return { text: 'FAIR', color: categoryColorMap.FAIR };
    if (score >= 500) return { text: 'POOR', color: categoryColorMap.POOR };
    if (score == 0) return { text: 'N/A', color: categoryColorMap.NA };
    return { text: 'VERY POOR', color: categoryColorMap.VERY_POOR };
};