Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save darltrash/3def7cbbdfa74ff197717f33808d5459 to your computer and use it in GitHub Desktop.
Save darltrash/3def7cbbdfa74ff197717f33808d5459 to your computer and use it in GitHub Desktop.
Lua convert HEX to RGB
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