Skip to content

Instantly share code, notes, and snippets.

@mikestreety
Created February 6, 2014 10:29
Show Gist options
  • Save mikestreety/8841770 to your computer and use it in GitHub Desktop.
Save mikestreety/8841770 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
@mixin background-opacity($theme) {
background-color: nth($theme, 1); //fallback
background-color: nth($theme, 2);
}
$dark: #000;
$dark-opacity: #ccc;
$dark-theme: $dark, $dark-opacity;
.class {
@include background-opacity($dark-theme);
}
.class {
background-color: black;
background-color: #cccccc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment