spatie / color

A little library to deal with color conversions
https://spatie.be/opensource/php
MIT License
350 stars 36 forks source link

Allow spaces in rgb(a) colors #10

Closed nesk closed 7 years ago

nesk commented 7 years ago

This allows to instanciate a rgb(a) color even if it contains spaces, just like in a browser:

Rgb::fromString('  rgb( 1 , 2 , 3 ) ');
Rgba::fromString('  rgba( 1 , 2 , 3 , 1 ) ');