Skip to content

Instantly share code, notes, and snippets.

@drifterz28
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save drifterz28/38ca6b02f35023f9ce24 to your computer and use it in GitHub Desktop.

Select an option

Save drifterz28/38ca6b02f35023f9ce24 to your computer and use it in GitHub Desktop.
Sass function to turn alpha in rgba to a float
@function float-rgba($r, $g, $b, $a-float) {
$alpha: $a-float / 255;
@return rgba($r, $g, $b, $alpha)
}
//EXAMPLE
.someclass {
color: float-rgba(255, 255, 255, 100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment