Skip to content

Instantly share code, notes, and snippets.

@lozandier
Created November 14, 2015 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lozandier/74911a03b7f10fcb4aee to your computer and use it in GitHub Desktop.
Save lozandier/74911a03b7f10fcb4aee to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin button($background-color) {
color: if( lightness($background-color) > 50%, black, white); // do magic here
background: $background-color;
}
.button-green {
@include button(#c69);
}
.button-gray {
@include button(#333);
}
.button-green {
color: black;
background: #c69;
}
.button-gray {
color: white;
background: #333;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment