shipshapecode/ember-x-editable

View on GitHub
addon/styles/mixins/_functions.scss

Summary

Maintainability
Test Coverage
// Color contrast
@mixin color-yiq($color) {
  $r: red($color);
  $g: green($color);
  $b: blue($color);

  $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;

  @if ($yiq >= 150) {
    color: #111;
  } @else {
    color: #fff;
  }
}