Skip to content

Instantly share code, notes, and snippets.

@daveroma
Created April 22, 2016 16:16
Show Gist options
  • Save daveroma/645b17171de6a7ab345621a062414f5f to your computer and use it in GitHub Desktop.
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
.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