'hsltohex' "function hsltohex(h, s, l) {\n" +"l /= 100;\n" +"const a = s * Math.min(l, 1 - l) / 100;\n" +"const f = n => {\n" +"const k = (n + h / 30) % 12;\n" +"const color = l - a * Math.max(Math.min(k - 3, 9 - k, 1), -1);\n" +"return Math.round(255 * color).toString(16).padStart(2, '0');\n" +"};\n" +"return `#${f(0)}${f(8)}${f(4)}`;}\n";