Skip to content

Instantly share code, notes, and snippets.

@rhettl
Created September 1, 2016 23:18
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 rhettl/4697b4c5c0e504ef724842d8bce6b47f to your computer and use it in GitHub Desktop.
Save rhettl/4697b4c5c0e504ef724842d8bce6b47f to your computer and use it in GitHub Desktop.
$font-base: 12px;
$red: #d80000;
$dkbrown: #2b1d0e;
$eggshell: #F0EAD6;
$tan: #D2B48C;
body {
font-size: $font-base;
background-color: $eggshell;
color: $dkbrown;
.content {
border: 1px solid $tan;
}
h1, h2, h3, h4, h5 {
color: mix($dkbrown, $red, 12%); // Brown with a little Red
}
h5 {
font-size: $font-base;
}
h4 {
font-size: $font-base * 1.2;
}
h3 {
font-size: $font-base * 1.4;
}
h2 {
font-size: $font-base * 1.6;
}
h1 {
font-size: $font-base * 2.0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment