Created
April 22, 2016 16:16
-
-
Save daveroma/645b17171de6a7ab345621a062414f5f to your computer and use it in GitHub Desktop.
LESS mixin for creating various shades of grey text using RGBa and optional opacity
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
.greytext(@opacity: 1.0) { | |
color: rgb(0, 0, 0); /* Fallback for older browsers */ | |
color: rgba(0, 0, 0, @opacity); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment