Sha256: 444a970e2ce9bb8e2c981312684e48b6e57585d37710b56fa2f47ba556352f46
Contents?: true
Size: 341 Bytes
Versions: 6
Compression:
Stored size: 341 Bytes
Contents
// Stroke contrast // Ripped off from https://github.com/twbs/bootstrap/commit/c31d52499811d5c68d122db806ce27a112b489bd @mixin stroke-yiq($color) { $r: red($color); $g: green($color); $b: blue($color); $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000; @if ($yiq >= 150) { stroke: #111; } @else { stroke: #fff; } }
Version data entries
6 entries across 6 versions & 1 rubygems