Last active
April 3, 2019 22:08
-
-
Save starryeyez024/b6bda9a52c3b0eb7f9244277cdd56c6d 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
| <br/> | |
| <div class="grid"> | |
| <div class="lighter">lighter</div> | |
| <div class="color">main color</div> | |
| <div class="darker">darker</div> | |
| </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.5.4) | |
| // ---- | |
| // ---- | |
| // Plug your color into the variable: | |
| $color: #486b00; | |
| //////////// | |
| // These autogenerate based on color math | |
| .lighter { | |
| background-color: desaturate(lighten($color, 65%), 40%); | |
| } | |
| .color { | |
| background-color: $color; | |
| } | |
| .darker { | |
| background-color: desaturate(darken($color, 8%), 10%); | |
| } | |
| .grid { | |
| display:grid; | |
| grid-gap: 20px; | |
| grid-template-columns:1fr 1fr 1fr; | |
| grid-template-rows: 200px; | |
| > * { | |
| padding: 10px; | |
| color: white; | |
| text-align: center; | |
| font-size: 40px; | |
| &:first-child{ | |
| color: black; | |
| } | |
| } | |
| } |
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
| .lighter { | |
| background-color: #e3f1c6; | |
| } | |
| .color { | |
| background-color: #486b00; | |
| } | |
| .darker { | |
| background-color: #2b3f03; | |
| } | |
| .grid { | |
| display: grid; | |
| grid-gap: 20px; | |
| grid-template-columns: 1fr 1fr 1fr; | |
| grid-template-rows: 200px; | |
| } | |
| .grid > * { | |
| padding: 10px; | |
| color: white; | |
| text-align: center; | |
| font-size: 40px; | |
| } | |
| .grid > *:first-child { | |
| color: black; | |
| } |
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
| <br/> | |
| <div class="grid"> | |
| <div class="lighter">lighter</div> | |
| <div class="color">main color</div> | |
| <div class="darker">darker</div> | |
| </div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment