Skip to content

Instantly share code, notes, and snippets.

@wingrunr21
Created January 21, 2014 14:47
Show Gist options
  • Save wingrunr21/8541402 to your computer and use it in GitHub Desktop.
Save wingrunr21/8541402 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)
// ----
$turquoise: #000000;
$green-sea: #ffffff;
@mixin calc-color($first-color, $second-color) {
.palette-#{$first-color} {
background-color: #{$first-color};
}
.palette-#{$second-color} {
background-color: #{$second-color};
}
}
@include calc-color('turquoise', 'green-sea');
// should be:
// .palette-turqoise {
// background-color: #000000;
// }
// .palette-green-sea {
// background-color: #ffffff;
// }
.palette-turquoise {
background-color: turquoise;
}
.palette-green-sea {
background-color: green-sea;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment