tgmedia/php-colouring

PHP library that allows you to play with colours

v1.0.3 2015-04-21 11:03 UTC

This package is auto-updated.

Last update: 2024-09-20 04:13:22 UTC


README

Example

<?php
use Tgmedia\PhpColouring\Colouring;

// initiate class passing through colour as hex
$colouring = new Colouring('#666666');

// darken colour by 40%
echo $colouring->darken(40);

// lighten colour by 20%
echo $colouring->lighten(20);
?>