Created
January 21, 2014 14:47
-
-
Save wingrunr21/8541402 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
// } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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