Skip to content

Instantly share code, notes, and snippets.

@dirkschmid
Forked from bastianallgeier/hsl.php
Created April 20, 2012 16:43
Show Gist options
  • Select an option

  • Save dirkschmid/2430224 to your computer and use it in GitHub Desktop.

Select an option

Save dirkschmid/2430224 to your computer and use it in GitHub Desktop.
<?php $hsl = rand(0, 240) . ',' . rand(50, 80) . '%,60%'; ?>
<style type="text/css">
a {
color: hsl(<?php echo $hsl ?>);
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment