Skip to content

Instantly share code, notes, and snippets.

@phpedinei
Forked from jasonbradley/gist:4357406
Created August 26, 2014 11:12
Show Gist options
  • Select an option

  • Save phpedinei/81fa8719456c8604c10e to your computer and use it in GitHub Desktop.

Select an option

Save phpedinei/81fa8719456c8604c10e to your computer and use it in GitHub Desktop.
function Util:hex2rgb(hex)
hex = hex:gsub("#","")
return tonumber("0x"..hex:sub(1,2)), tonumber("0x"..hex:sub(3,4)), tonumber("0x"..hex:sub(5,6))
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment