Automatically set the text color based on the background.
Helps you display things like colored labels.
http://evert0n.github.io/angular-color-contrast/
Install with Bower
$bower install angular-color-contrast
Include this component into your app
<script src="color-contrast.js"></script>
Inject colorContrast as a module dependency to your app.
var myApp = angular.module('myApp', ['colorContrast']);
Pass the background color of element to get the right color contrast for the text.
<div ng-show="labels" class="labels">
<a ng-repeat="label in labels" href="#" target="_blank">
<span class="label" color-contrast="{{label.color}}">{{label.name}}</span>
</a>
</div>