Created
April 30, 2015 18:28
-
-
Save una/f3a543c43aa888f1dde5 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
<ul> | |
<li class="dark"></li> | |
<li class="brand-dark"></li> | |
<li class="brand-color"></li> | |
<li class="brand-light"></li> | |
<li class="light"></li> | |
<li class="brand-compliment"></li> | |
</ul> |
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.13) | |
// Compass (v1.0.3) | |
// ---- | |
// things to mix | |
$light: #ff0; | |
$brand-color: #88d9e6; | |
$dark: #c69; | |
$brand-dark: mix($brand-color, $dark, 60%); | |
$brand-light: mix($brand-color, $light, 40%); | |
$brand-compliment: mix($light, invert($brand-color), 20%); | |
// variables | |
.dark { | |
background-color: $dark; | |
} | |
.light { | |
background-color: $light; | |
} | |
.brand-color { | |
background-color: $brand-color; | |
} | |
.brand-dark { | |
background-color: $brand-dark; | |
} | |
.brand-light { | |
background-color: $brand-light; | |
} | |
.brand-compliment { | |
background: $brand-compliment; | |
} | |
li { | |
width: 60px; | |
height: 60px; | |
display: inline-block; | |
} |
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
.dark { | |
background-color: #c69; | |
} | |
.light { | |
background-color: #ff0; | |
} | |
.brand-color { | |
background-color: #88d9e6; | |
} | |
.brand-dark { | |
background-color: #a3abc7; | |
} | |
.brand-light { | |
background-color: #cfef5c; | |
} | |
.brand-compliment { | |
background: #925114; | |
} | |
li { | |
width: 60px; | |
height: 60px; | |
display: inline-block; | |
} |
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
<ul> | |
<li class="dark"></li> | |
<li class="brand-dark"></li> | |
<li class="brand-color"></li> | |
<li class="brand-light"></li> | |
<li class="light"></li> | |
<li class="brand-compliment"></li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment