From 1eb0b7eeeae6100fe9b3e03337d0909f15b1ab2c Mon Sep 17 00:00:00 2001 From: Anton Roslund Date: Sun, 16 Mar 2025 11:32:15 +0100 Subject: [PATCH] Add yellow color to snr --- src/public/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/public/index.html b/src/public/index.html index 8c434fc..5281674 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -2986,7 +2986,8 @@ function getColourForSnr(snr) { if(snr >= 0) return "#16a34a"; // good - if(snr < 0) return "#dc2626"; // bad + if(snr > -10) return "#fff200"; // meh + if(snr <= -10) return "#dc2626"; // bad } function cleanUpNodeNeighbours() {