Skip to content

Instantly share code, notes, and snippets.

@bradfrost
Created December 11, 2013 05:24
Show Gist options
  • Save bradfrost/7905494 to your computer and use it in GitHub Desktop.
Save bradfrost/7905494 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@function randomColor($format:NULL) {
$red: random(256);
$green: random(256);
$blue: random(256);
@return rgb($red, $green, $blue);
}
//Colors
$brand : randomColor();
div {
background: randomColor();
}
div {
background: #fcb4cc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment