Skip to content

Instantly share code, notes, and snippets.

@jasonbradley
Created December 22, 2012 03:47
Show Gist options
  • Select an option

  • Save jasonbradley/4357406 to your computer and use it in GitHub Desktop.

Select an option

Save jasonbradley/4357406 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
@saantonandre

Copy link
Copy Markdown

With alpha channel and short hex support, fractional(0.0,1.0) and integer(0,255) outputs, validation
https://gist.github.com/saantonandre/f641a6e1e9215543b31b4fafa733397c

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment