diegonz / color-wcag2

Color accessibility tool following Web Content Accessibility Guidelines (WCAG) 2.0

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 diego@smartidea.es instead of using the issue tracker.

Credits

License

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

About

Color accessibility tool following Web Content Accessibility Guidelines (WCAG) 2.0

License:MIT License


Languages

Language:PHP 83.8%Language:JavaScript 16.2%