Skip to content

Instantly share code, notes, and snippets.

@hellobrian
Last active November 13, 2015 19:41
Show Gist options
  • Select an option

  • Save hellobrian/8013dbdc8ee6fa759f5d to your computer and use it in GitHub Desktop.

Select an option

Save hellobrian/8013dbdc8ee6fa759f5d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<!-- html -->
<h1> blah</h1>
<h2 class="hi">hi</h2>
// ----
// libsass (v3.2.5)
// ----
@mixin type($color, $size, $weight) {
color: $color;
font-size: $size;
font-weight: $weight;
}
h1, .h1 {
@include type(red, 2rem, bold);
.light-theme & {
@include type(blue, 2rem, bold);
}
.dark-theme & {
@include type(teal, 2rem, bold);
}
}
h1, .h1 {
color: red;
font-size: 2rem;
font-weight: bold;
}
.light-theme h1, .light-theme .h1 {
color: blue;
font-size: 2rem;
font-weight: bold;
}
.dark-theme h1, .dark-theme .h1 {
color: teal;
font-size: 2rem;
font-weight: bold;
}
<!-- html -->
<h1> blah</h1>
<h2 class="hi">hi</h2>
@hellobrian
Copy link
Author

type-scale

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment