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.

14 lines
384 B

5 years ago
  1. export const COLOR_VERY_BAD = "#F66";
  2. export const COLOR_BAD = "#FBB";
  3. export const COLOR_NEUTRAL = "#FFF";
  4. export const COLOR_GOOD = "#BFB";
  5. export const COLOR_VERY_GOOD = "#6F6";
  6. export const colorByDiff = (diff, prevDiff) => {
  7. if (diff < 0) {
  8. return diff < prevDiff ? COLOR_VERY_BAD : COLOR_BAD;
  9. } else {
  10. return diff > prevDiff ? COLOR_VERY_GOOD : COLOR_GOOD;
  11. }
  12. };