Add yellow color to snr

This commit is contained in:
Anton Roslund 2025-03-16 11:32:15 +01:00
parent 67fc07d326
commit 1eb0b7eeea

View file

@ -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() {