0.0.1 • Published 8 years ago

angular-color-contrast v0.0.1

Weekly downloads
130
License
ISC
Repository
github
Last release
8 years ago

AngularJS Color Contrast Directive

Automatically set the text color based on the background.

Helps you display things like colored labels.

Demo

http://evert0n.github.io/angular-color-contrast/

Usage

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>

License

MIT License