Skip to content

Instantly share code, notes, and snippets.

@seanblanton
Created July 13, 2017 18:56
Show Gist options
  • Save seanblanton/e035180398313361ca8467d5e7de79a4 to your computer and use it in GitHub Desktop.
Save seanblanton/e035180398313361ca8467d5e7de79a4 to your computer and use it in GitHub Desktop.
rgb(a) alpha value override function
# Overrides rgba alpha values with a new alpha
const alpha = (color, opacity) =>
color.replace(/[\d\.]+\)$/g, opacity+')')
alpha(gray100, 0.4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment