Skip to content

Instantly share code, notes, and snippets.

@vaclavcadek
Created August 8, 2018 13:58
Show Gist options
  • Save vaclavcadek/bbfb2b5dada305ec299af37ed928dcdb to your computer and use it in GitHub Desktop.
Save vaclavcadek/bbfb2b5dada305ec299af37ed928dcdb to your computer and use it in GitHub Desktop.
Transform RGB color to hex.
def rgb2hex(rgb):
return ''.join([format(val, '02X') for val in rgb])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment