Hex to RGB

Convert a hex color code to RGB values.

Code

Utilities
$h = ltrim($hex, '#');
return ['r' => hexdec(substr($h, 0, 2)), 'g' => hexdec(substr($h, 2, 2)), 'b' => hexdec(substr($h, 4, 2))];

Parameters

The hex color code.

Server

More PHP Snippets