Last active
August 29, 2015 13:56
-
-
Save KatieK2/8852972 to your computer and use it in GitHub Desktop.
Demonstrates how differing color values are compiled when `compressed`. 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
| // ---- | |
| // Sass (v3.3.0.rc.2) | |
| // Compass (v1.0.0.alpha.17) | |
| // ---- | |
| $red: red; | |
| $FF0000: #FF0000; | |
| $fuchsia: fuchsia; | |
| $f0f: #f0f; | |
| .red { | |
| color: $red; | |
| } | |
| .FF0000 { | |
| color: $FF0000; | |
| } | |
| .fuchsia { | |
| color: $fuchsia; | |
| } | |
| .f0f { | |
| color: $f0f; | |
| } | |
| // red. Note that for example fuchsia will be beaten by #f0f. |
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
| .red{color:red}.FF0000{color:red}.fuchsia{color:#f0f}.f0f{color:#f0f} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment