From a07bd333ef90ae33fabefb68a1951f22ba9c89b7 Mon Sep 17 00:00:00 2001 From: Lucas <100660343+lulunac27a@users.noreply.github.com> Date: Mon, 29 Sep 2025 11:54:07 -0500 Subject: [PATCH] Add another color to entropy value Add new yellow-green color to entropy value between 3 and 4 to make it more smooth color changes. --- src/core/operations/Magic.mjs | 1 + 1 file changed, 1 insertion(+) 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"; }