d3-flame-graph
d3-flame-graph copied to clipboard
colorMapper random colors
when adding random color to decide the color of each frame using this function
function colorMapper(d, originalColor) {
const colors = ['#84D67B', '#9CDE95', '#B5E6AF', '#CDEECA', '#CDEECA'];
return colors[Math.floor(Math.random() * colors.length)];
}
when i click on any frame the colors keep changing