Skip to content

Instantly share code, notes, and snippets.

@carolina-vallejo
Last active May 19, 2018 12:05
Show Gist options
  • Save carolina-vallejo/5f457f5712e2d4d4efd2f67172f11aed to your computer and use it in GitHub Desktop.
Save carolina-vallejo/5f457f5712e2d4d4efd2f67172f11aed to your computer and use it in GitHub Desktop.
rgb to hsl in d3
.style('fill',function(d, i){
var c = d3.hsl(d3.rgb(#FF9900));
c.l += ((0.7/2)*i);
return c + "";
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment