Created
February 28, 2013 19:46
-
-
Save audionerd/5059500 to your computer and use it in GitHub Desktop.
tiny hex to rgb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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