Skip to content

Instantly share code, notes, and snippets.

@gsambrotta
Last active September 7, 2016 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gsambrotta/8a7641d7cc5afe5041f10a703567f190 to your computer and use it in GitHub Desktop.
Save gsambrotta/8a7641d7cc5afe5041f10a703567f190 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
.biox-black {
background: #111;
}
.biox-black--text {
color: #111;
}
.biox-white {
background: #fff;
}
.biox-white--text {
color: #fff;
}
.biox-grey {
background: #f2f3f4;
}
.biox-grey--text {
color: #f2f3f4;
}
.biox-black-grey {
background: #222;
}
.biox-black-grey--text {
color: #222;
}
.biox-dark-blue {
background: #414550;
}
.biox-dark-blue--text {
color: #414550;
}
.biox-blue-grey {
background: #ced8dc;
}
.biox-blue-grey--text {
color: #ced8dc;
}
.biox-text-blue {
background: #798f9a;
}
.biox-text-blue--text {
color: #798f9a;
}
.biox-text-black {
background: #414550;
}
.biox-text-black--text {
color: #414550;
}
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
$colors: (
biox-black: #111,
biox-white: #fff,
biox-grey: #f2f3f4,
biox-black-grey: #222,
biox-dark-blue: #414550,
biox-blue-grey: #ced8dc,
biox-text-blue: #798f9a,
biox-text-black: #414550
);
@each $key, $color in $colors {
.#{$key} {
background: $color;
&--text {
color: $color;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment