Skip to content

Instantly share code, notes, and snippets.

@dhoko
Last active August 29, 2015 14:01
Show Gist options
  • Save dhoko/7d86302f0456bce50222 to your computer and use it in GitHub Desktop.
Save dhoko/7d86302f0456bce50222 to your computer and use it in GitHub Desktop.
Color: Hex to rgb
<?php
// Without #
list($r,$g,$b) = sscanf($color, "%02x%02x%02x");
// With #
list($r,$g,$b) = sscanf($color, "#%02x%02x%02x");
// from http://stackoverflow.com/questions/15202079/convert-hex-color
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment