Skip to content

Instantly share code, notes, and snippets.

@alademann
Created July 26, 2014 18:23
Show Gist options
  • Select an option

  • Save alademann/7fbdba76c90d0dbf7210 to your computer and use it in GitHub Desktop.

Select an option

Save alademann/7fbdba76c90d0dbf7210 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
@import "compass";
$colors: (
'cyan': #00ffff,
'purple': #b848c9
);
@each $name, $hex in $colors {
.#{$name} {
background-color: $hex;
color: contrast-color($hex);
}
}
.cyan {
background-color: cyan;
color: black;
}
.purple {
background-color: #b848c9;
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment