Skip to content

Instantly share code, notes, and snippets.

@richardnfag
Created November 16, 2019 01:09
Show Gist options
  • Save richardnfag/5db190232f883d5be3762a89390d6fc8 to your computer and use it in GitHub Desktop.
Save richardnfag/5db190232f883d5be3762a89390d6fc8 to your computer and use it in GitHub Desktop.
Python Hex Code to RGB Value
def hex_to_rgb(hex):
return ','.join(list(
map(
lambda x: str(int(hex[x:x+2], 16)),
range(0, len(hex), 2)
)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment