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.

Revisions

  1. leonelhs created this gist Jun 24, 2023.
    5 changes: 5 additions & 0 deletions rgb2hex.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    def rgb2hex(rgb):
    return '#%02X%02X%02X' % rgb


    print(rgb2hex((20, 110, 56)))