Last active
June 27, 2019 17:14
-
-
Save starryeyez024/0ef290271508088e5e4da9a3732c053e 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="blue"> | |
blue | |
</div> | |
<div class="test-var"> | |
blue? | |
</div> | |
<div class="test-rgba-var"> | |
blue! | |
</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) | |
// ---- | |
:root { | |
--blue: #0066cc; | |
--blue-rgb: 0, 102, 204; | |
} | |
.blue { | |
color:var(--blue); | |
} | |
.test-var { | |
color:rgba( var(--blue), .8); | |
} | |
.test-rgba-var { | |
color:rgba( var(--blue-rgb), .8); | |
} |
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
:root { | |
--blue: #0066cc; | |
--blue-rgb: 0, 102, 204; | |
} | |
.blue { | |
color: var(--blue); | |
} | |
.test-var { | |
color: rgba(var(--blue), 0.8); | |
} | |
.test-rgba-var { | |
color: rgba(var(--blue-rgb), 0.8); | |
} |
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="blue"> | |
blue | |
</div> | |
<div class="test-var"> | |
blue? | |
</div> | |
<div class="test-rgba-var"> | |
blue! | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment