Skip to content

atmonshi/gmdcolors

Repository files navigation

GMDColors

Build Status Maintainability Latest Stable Version Total Downloads License

get Google Material Design hex colors for php

see the Color palette in google material

Usage :

get a single color :

$getC = new getcolors;
$hex   = $getC->hex('Blue','100');
// return : string '#BBDEFB'

get a a random colors :

$getC = new getcolors;
$rand = $getC->rand(3);

/*return : array (size=3)
0 => string '#BA68C8' (length=7)
1 => string '#FFF176' (length=7)
2 => string '#64B5F6' (length=7)
*/