Created
March 11, 2015 12:17
-
-
Save felixmosh/7a08f6565c898db440d6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
<div class="org"> | |
org | |
</div> | |
<div class="mine"> | |
mine | |
</div> | |
<div class="target"> | |
target | |
</div> |
This file contains 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.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$org: #f14d4d; | |
$target: #be3f3f; | |
$mine: darken(adjust-saturation($org, -35%), 13%); | |
.org { | |
background-color: $org; | |
height: 40px; | |
} | |
.mine { | |
background-color: $mine; | |
height: 40px; | |
} | |
.target { | |
background-color: $target; | |
height: 40px; | |
} |
This file contains 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
.org { | |
background-color: #f14d4d; | |
height: 40px; | |
} | |
.mine { | |
background-color: #bd3e3e; | |
height: 40px; | |
} | |
.target { | |
background-color: #be3f3f; | |
height: 40px; | |
} |
This file contains 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
<div class="org"> | |
org | |
</div> | |
<div class="mine"> | |
mine | |
</div> | |
<div class="target"> | |
target | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment