function valueToHexColor(value) { let hex = Math.round(255 * value).toString(16); return `#${hex}${hex}${hex}` }
© 2026 Hedgehog Software, LLC