Skip to content

Instantly share code, notes, and snippets.

@TimHacker
Created January 20, 2014 14:50
Show Gist options
  • Save TimHacker/8521156 to your computer and use it in GitHub Desktop.
Save TimHacker/8521156 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
@mixin compliment-me($color-base) {
@if lightness($color-base) >= 51% {
background-color: #000000;
} @else if lightness($color-base) >= 30% {
background-color: #333333;
} @else {
background-color: #ffffff;
}
}
.intro {
@include compliment-me(#ffffff);
}
.body {
@include compliment-me(#777777);
}
.sidebar {
@include compliment-me(#000000);
}
.intro {
background-color: #000000;
}
.body {
background-color: #333333;
}
.sidebar {
background-color: #ffffff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment