Created
August 20, 2014 23:11
-
-
Save tddewey/9273d4b26e9dda9e9b5a 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
<div></div> |
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.14) | |
// Compass (v1.0.0) | |
// ---- | |
$colors: ( | |
'max': #f13198, | |
'bus': #7fdb59, | |
'streetcar': #dae445, | |
'bicycle': #29a9d6, | |
); | |
@function random-color() { | |
$integer: random(length($colors)); | |
$keys: map-keys($colors); | |
$random-key: nth($keys, $integer); | |
@return map-get( $colors, $random-key); | |
} | |
body { | |
background-color: random-color(); | |
} |
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
body { | |
background-color: #7fdb59; | |
} |
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></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment