Last active
October 29, 2015 19:19
-
-
Save ghuger/4c35e038d767e319339f 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
| <div id="x"><span id="y">Y</span>Hi</div> | |
| <div id="a"><span id="b">Y</span>Hi</div> |
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
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $start: #d1404a; | |
| $dark: desaturate(darken($start, 23), 20); | |
| $TITLE_LIGHT: $start; | |
| $TITLE_DARK: $dark; | |
| $BEFORE_LIGHT: darken($start, 5); | |
| $BEFORE_DARK: mix($dark, mix($start, black, 10)); | |
| #b, #y { | |
| display: inline-block; | |
| width: 100px; | |
| height: 100px; | |
| } | |
| #x { background-color: $TITLE_LIGHT; } | |
| #y { background-color: darken($start, 5); } | |
| $dark: desaturate(darken($start, 23), 20); | |
| #a { background-color: $dark; } | |
| #b { background-color: mix($dark, mix($start, black, 10)); } |
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
| #b, #y { | |
| display: inline-block; | |
| width: 100px; | |
| height: 100px; | |
| } | |
| #x { | |
| background-color: #d1404a; | |
| } | |
| #y { | |
| background-color: #c7303a; | |
| } | |
| #a { | |
| background-color: #6e2e32; | |
| } | |
| #b { | |
| background-color: #411a1d; | |
| } |
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
| <div id="x"><span id="y">Y</span>Hi</div> | |
| <div id="a"><span id="b">Y</span>Hi</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment