Skip to content

Instantly share code, notes, and snippets.

@fiinix
Created November 26, 2014 15:41
Show Gist options
  • Save fiinix/7d5e3bfb231eae2469d1 to your computer and use it in GitHub Desktop.
Save fiinix/7d5e3bfb231eae2469d1 to your computer and use it in GitHub Desktop.
Return random colour using the HSLa colour model.
/* Random colour using the HSLa color model */
@function rColor() {
$return: hsla(random(365), 90, 50, 0.2);
@return $return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment