Skip to content

Instantly share code, notes, and snippets.

@bradoyler
Created October 29, 2019 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradoyler/0e0a40ef5f9a00c1a8fec833e8faaf6f to your computer and use it in GitHub Desktop.
Save bradoyler/0e0a40ef5f9a00c1a8fec833e8faaf6f to your computer and use it in GitHub Desktop.
simple color scale function using HSL https://www.w3schools.com/colors/colors_hsl.asp
function numToColor (num, maxHue = 350, minHue = 0) {
const hue = num * (maxHue - minHue) + minHue
return `hsl(${hue}, 70%, 45%)`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment