atmonshi/gmdcolors

Google Material Design hex colors for php.

Maintainers

Package info

github.com/atmonshi/gmdcolors

Type:project

pkg:composer/atmonshi/gmdcolors

Fund package maintenance!

atmonshi

Statistics

Installs: 607

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

v1.0.2 2020-05-09 03:58 UTC

This package is auto-updated.

Last update: 2026-03-08 03:33:58 UTC


README

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)
*/