Skip to content

Instantly share code, notes, and snippets.

@dliggat
Last active August 29, 2015 13:56
Show Gist options
  • Save dliggat/8851242 to your computer and use it in GitHub Desktop.
Save dliggat/8851242 to your computer and use it in GitHub Desktop.
Convert RGBA to transparency + hex
vals = "255,0,0,0.8".split(',')
transparency = vals.pop.to_f
hex = "#%02x%02x%02x" % vals.map(&:to_i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment