Skip to content

Instantly share code, notes, and snippets.

@travismillerweb
Created October 20, 2015 06:46
Show Gist options
  • Save travismillerweb/ee3a5dddb1356827901b to your computer and use it in GitHub Desktop.
Save travismillerweb/ee3a5dddb1356827901b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$categories: (sell-sheets: #F1B261, trends-reports: #6BBCCF, insights: #A07BA8, recipe-cards: #91B97D, videos: #EA838C);
$properties: (text: color, bg: background-color, border: border-color);
@mixin category_theming($type) {
@each $label, $property in $properties {
@if $type == $label {
@each $name, $color in $categories {
.#{$name} {
#{$property}:#{$color};
}
}
}
}
}
@include category_theming("bg");
.sell-sheets {
background-color: #F1B261;
}
.trends-reports {
background-color: #6BBCCF;
}
.insights {
background-color: #A07BA8;
}
.recipe-cards {
background-color: #91B97D;
}
.videos {
background-color: #EA838C;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment