| 1 | <?php |
||
| 8 | class Color { |
||
| 9 | /** |
||
| 10 | * Converts a hexadecimal color into it's RGBA components |
||
| 11 | * Accepts hex with and without alpha: #112233, #112233FF |
||
| 12 | * Accepts hex with and without a leading # sign |
||
| 13 | * |
||
| 14 | * @param string $hex |
||
| 15 | * @return array |
||
| 16 | */ |
||
| 17 | public static function hex_to_rgba( $hex ) { |
||
| 34 | } |
||
| 35 |