Skip to content

Instantly share code, notes, and snippets.

@theshem
Created February 15, 2014 20:02
Show Gist options
  • Save theshem/9024526 to your computer and use it in GitHub Desktop.
Save theshem/9024526 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.4)
// Compass (v1.0.0.alpha.18)
// ----
@function set-color($color) {
@if (lightness($color) > 40) {
@return #000;
}
@else {
@return #FFF;
}
}
div {
background-color: black; // Or whatever else
p {
color: set-color(black);
}
}
div {
background-color: black;
}
div p {
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment