Skip to content

Commit

Permalink
Make Direct Dark Green (#411)
Browse files Browse the repository at this point in the history
* Make Direct Dark Green

* Update GapAnalysis.tsx

Signed-off-by: John Harvey <[email protected]>

---------

Signed-off-by: John Harvey <[email protected]>
  • Loading branch information
john681611 authored and northdpole committed Oct 28, 2023
1 parent 1158efb commit 0d1b8b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/frontend/src/pages/GapAnalysis/GapAnalysis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
};
Expand Down

0 comments on commit 0d1b8b9

Please sign in to comment.