Skip to content

Instantly share code, notes, and snippets.

@BuddyLReno
Created October 17, 2014 14:44
Show Gist options
  • Save BuddyLReno/e2c3b725e9e2f55c10ab to your computer and use it in GitHub Desktop.
Save BuddyLReno/e2c3b725e9e2f55c10ab to your computer and use it in GitHub Desktop.
Theme Mixin
@mixin color-theme(
$seating_class: $default-primary,
$fineprint: $default-background,
$fineprint_copy: $default-primary--inverse,
$icons: $default-primary
) {
%theme-seating_class {
color: $seating_class;
}
%theme-fineprint {
background-color: $fineprint;
color: $fineprint_copy;
}
%theme-icons {
color: $icons;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment