Created
December 11, 2013 05:24
-
-
Save bradfrost/7905494 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div { | |
background: #fcb4cc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment