Skip to content

Instantly share code, notes, and snippets.

@mattkrins
Created September 17, 2019 17:31
Show Gist options
  • Save mattkrins/0732f603d7baa2a01963665d3ac4f07c to your computer and use it in GitHub Desktop.
Save mattkrins/0732f603d7baa2a01963665d3ac4f07c to your computer and use it in GitHub Desktop.
Garry's Mod (gmod) Hex to RGB color helper
function HexColor(hex, alpha)
hex = hex:gsub("#","")
return Color ( tonumber("0x" .. hex:sub(1,2)), tonumber("0x" .. hex:sub(3,4)), tonumber("0x" .. hex:sub(5,6)), alpha or 255 )
end
@mattkrins
Copy link
Author

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