diff --git a/src/core/operations/Magic.mjs b/src/core/operations/Magic.mjs index 69cad1db1f..9bb39d2643 100644 --- a/src/core/operations/Magic.mjs +++ b/src/core/operations/Magic.mjs @@ -105,6 +105,7 @@ class Magic extends Operation { */ function chooseColour(val) { if (val < 3) return "green"; + if (val < 4) return "yellowgreen"; if (val < 5) return "goldenrod"; return "red"; }