Skip to content

Latest commit

 

History

History
77 lines (47 loc) · 1.79 KB

README.md

File metadata and controls

77 lines (47 loc) · 1.79 KB

ColorWcag2

Travis Build Status StyleCI Status Codecov Status Latest Version on Packagist

Laravel simple color accessibility tool, following Web Content Accessibility Guidelines (WCAG) 2.0

Installation

Require the package using composer:

composer require diegonz/color-wcag2

Javascript asset [optional]

Run the artisan command to generate de javascript asset:

php artisan color-wcag2:generate

Then include the javascript asset in your template like this:

<script src="{{ asset('js/color-wcag2.js') }}"></script>

Usage

PHP

<?php

use \Diegonz\ColorWcag2\Facades\ColorWcag2;

ColorWcag2::contrast('#5b77a0', '#fffffff');

// bool(true)

Javascript

colorWcag2.contrast('#5b77a0', '#fffffff');

// "true"

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.