Created
September 19, 2014 00:21
-
-
Save CheetoMao/7075d60aec57a497a19b 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
<body> | |
<div class="base-color"></div> | |
<div class="complement-color"></div> | |
<div class="mix-color"></div> | |
</body> |
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.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
$base-color: #f1c40f; | |
$complement-color: adjust-hue($base-color, 120); | |
$complement-color: #3498db; | |
$mix-color: mix($base-color,$complement-color,20%); | |
body { background: #E0E0E0; } | |
div { | |
border: 2px solid #FFF; | |
float: left; | |
height: 100px; | |
margin: 0 2px; | |
width: 100px; | |
&.base-color { | |
background: $base-color; | |
} | |
&.complement-color { | |
background: $complement-color; | |
} | |
&.mix-color { | |
background: $mix-color; | |
} | |
} |
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
body { | |
background: #E0E0E0; | |
} | |
div { | |
border: 2px solid #FFF; | |
float: left; | |
height: 100px; | |
margin: 0 2px; | |
width: 100px; | |
} | |
div.base-color { | |
background: #f1c40f; | |
} | |
div.complement-color { | |
background: #3498db; | |
} | |
div.mix-color { | |
background: #59a0b2; | |
} |
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
<body> | |
<div class="base-color"></div> | |
<div class="complement-color"></div> | |
<div class="mix-color"></div> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment