Skip to content

Instantly share code, notes, and snippets.

@iamntz
Created March 28, 2012 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamntz/deef2269922e5a8f0cba to your computer and use it in GitHub Desktop.
Save iamntz/deef2269922e5a8f0cba to your computer and use it in GitHub Desktop.
<?php
function get_rgb( $color = '000000' ){
$rgb = array();
for ( $x = 0; $x < 3; $x++ ){
$rgb[$x] = hexdec( substr( $color, ( 2*$x ), 2 ) );
}
return $rgb;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment