Skip to content

Instantly share code, notes, and snippets.

@YonatanKra
Created August 21, 2021 17:58
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 YonatanKra/c0e2b85a710c5659417fa257c4642f2e to your computer and use it in GitHub Desktop.
Save YonatanKra/c0e2b85a710c5659417fa257c4642f2e to your computer and use it in GitHub Desktop.
function getColor(percentage) {
const hue = percentage * 360;
return `hsl(${hue}, 100%, 50%)`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment