Skip to content

Instantly share code, notes, and snippets.

@ThatDevopsGuy
Last active December 15, 2015 03:08
Show Gist options
  • Save ThatDevopsGuy/5191740 to your computer and use it in GitHub Desktop.
Save ThatDevopsGuy/5191740 to your computer and use it in GitHub Desktop.
Quick-and-Easy Colorization Snippet
for i, highlightable_item in enumerate(highlightable_items):
hue = (360 / len(highlightable_items)) * i
yield '<span style="color: hsl(%s,50%%, 50%%);">%s</span>' % (hue, highlightable_item)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment