Skip to content

Instantly share code, notes, and snippets.

@leonelhs
Created June 24, 2023 17:29
Show Gist options
  • Select an option

  • Save leonelhs/ed70bb648683e737e9e5aba6b0a8a638 to your computer and use it in GitHub Desktop.

Select an option

Save leonelhs/ed70bb648683e737e9e5aba6b0a8a638 to your computer and use it in GitHub Desktop.
converts rgb integers to hex
def rgb2hex(rgb):
return '#%02X%02X%02X' % rgb
print(rgb2hex((20, 110, 56)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment