Skip to content

Instantly share code, notes, and snippets.

@airen
Created August 8, 2014 14:19
Show Gist options
  • Save airen/57624d6f0f933ee64384 to your computer and use it in GitHub Desktop.
Save airen/57624d6f0f933ee64384 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.3)
// Compass (v1.0.0.rc.1)
// ----
//Thanks:http://sachagreif.com/useful-sass-mixins/
@function black($opacity){
@return rgba(0,0,0,$opacity)
}
@function white($opacity){
@return rgba(255,255,255,$opacity)
}
//Usage:
.my-class{
background:black(0.15);
color:white(0.9);
}
.my-class {
background: rgba(0, 0, 0, 0.15);
color: rgba(255, 255, 255, 0.9);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment