Skip to content

Instantly share code, notes, and snippets.

@audionerd
Created February 28, 2013 19:46
Show Gist options
  • Save audionerd/5059500 to your computer and use it in GitHub Desktop.
Save audionerd/5059500 to your computer and use it in GitHub Desktop.
tiny hex to rgb
# tiny hex to rgb
# via http://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb/11508164#11508164
def rgb(color)
[16, 8, 0].map { |n| color >> n & 255 }
end
rgb 0xfa029a
=> [250, 2, 154]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment