Skip to content

Instantly share code, notes, and snippets.

@tddewey
Created August 20, 2014 23:11
Show Gist options
  • Save tddewey/9273d4b26e9dda9e9b5a to your computer and use it in GitHub Desktop.
Save tddewey/9273d4b26e9dda9e9b5a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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();
}
body {
background-color: #7fdb59;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment