Sha256: b15004cef5238a48eaedca2e2adcc808dad7525f3637eb84ff2d7929e03c61af

Contents?: true

Size: 241 Bytes

Versions: 9

Compression:

Stored size: 241 Bytes

Contents

// 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: #111111;
  } @else {
    color: $white;
  }
}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
bootstrap-email-0.3.4 core/sass/_functions.scss
bootstrap-email-0.3.3 core/sass/_functions.scss
bootstrap-email-0.3.2 core/sass/_functions.scss
bootstrap-email-0.3.1 core/sass/_functions.scss
bootstrap-email-0.3.0 core/sass/_functions.scss
bootstrap-email-0.2.6 core/sass/_functions.scss
bootstrap-email-0.2.5 core/sass/_functions.scss
bootstrap-email-0.2.4 core/sass/_functions.scss
bootstrap-email-0.2.3 core/sass/_functions.scss