Skip to content

Instantly share code, notes, and snippets.

@una
Last active August 29, 2015 14:20
Show Gist options
  • Save una/10181933a356f6f2928e to your computer and use it in GitHub Desktop.
Save una/10181933a356f6f2928e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
$contrast-settings: (
'light-color': #f00,
'dark-color': #c69,
'light-ratio': 60%
);
@mixin contrast-me($bg-color) {
@if lightness($bg-color) < map-get($contrast-settings, 'light-ratio') {
color: map-get($contrast-settings, 'dark-color');
} @else {
color: map-get($contrast-settings, 'light-color');
}
background-color: $bg-color;
}
div {
padding: 2em;
text-align: center;
@include contrast-me(darkgreen);
}
div {
padding: 2em;
text-align: center;
color: #c69;
background-color: darkgreen;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment