Skip to content

Instantly share code, notes, and snippets.

/.rb Secret

Created August 24, 2015 20:38
Show Gist options
  • Save anonymous/7ff0074175d48cb6acd7 to your computer and use it in GitHub Desktop.
Save anonymous/7ff0074175d48cb6acd7 to your computer and use it in GitHub Desktop.
def hex_to_rgb(hex)
r = hex.slice(1..2).to_i(16)
g = hex.slice(3..4).to_i(16)
b = hex.slice(5..6).to_i(16)
"#{r}, #{g}, #{b}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment