Skip to content

Instantly share code, notes, and snippets.

@intco
Created November 9, 2016 07:05
Show Gist options
  • Save intco/743db4c5a99234abdc5a5d392a8db33b to your computer and use it in GitHub Desktop.
Save intco/743db4c5a99234abdc5a5d392a8db33b to your computer and use it in GitHub Desktop.
<?php
/**
* returns dark or light primary color provided the background
*/
function cc($backgroundColor, $dark='black', $light='white') {
return (hexdec($backgroundColor) > 0xffffff/2) ? $dark : $light;
}
echo cc('008000')."\n";
echo cc('FFC0CB')."\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment