Created
June 25, 2013 13:01
-
-
Save jeremyboggs/5858250 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Colors | |
$default-color : rgb(75,75,75); | |
$default-color-light : rgba($default-color, 0.75); | |
$default-color-lighter : rgba($default-color, 0.5); | |
$default-color-lightest : rgba($default-color, 0.1); | |
$link-color : darken(rgb(100,200,200), 10%); | |
$link-visited-color : darken($link-color, 10%); | |
$link-hover-color : adjust-hue($link-color, 0); | |
$link-focus-color : $link-hover-color; | |
$link-active-color : $link-color; | |
// Fonts | |
$default-font: "Noto Serif", serif; | |
$alt-font: "Noto Sans", sans-serif; | |
$heading-font: $alt-font; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment