diff --git a/application/frontend/src/pages/GapAnalysis/GapAnalysis.tsx b/application/frontend/src/pages/GapAnalysis/GapAnalysis.tsx index 6b8ab267a..a8878a162 100644 --- a/application/frontend/src/pages/GapAnalysis/GapAnalysis.tsx +++ b/application/frontend/src/pages/GapAnalysis/GapAnalysis.tsx @@ -56,8 +56,8 @@ const GetStrength = (score) => { }; const GetStrengthColor = (score) => { - if (score === 0) return '#D1B000'; - if (score < 5) return 'Green'; + if (score === 0) return 'darkgreen'; + if (score < 5) return '#93C54B'; if (score >= 20) return 'Red'; return 'Orange'; };