// Colors // Color calculator - http://razorjam.github.io/sasscolourfunctioncalculator/ // Color names - http://name-of-color.com/ $gray-100: #f2f2f2; $gray-200: #999; $black: #000; $white: #fff; $red: #d71921; $base-font-sans-serif: 'Montserrat', 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif; $font-family-roboto: 'Roboto', 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif; $base-font-serif: 'Times New Roman', 'Times', 'Baskerville', 'Georgia', serif; // This is the default html and body font-size for the base rem value. $rem-base: 16px; // Body $base-text-color: $black !default; $base-background-color: $white !default; $font-size-base: 16px !default; $line-height-base: 1.2 !default; $base-font-family: $base-font-sans-serif !default; $vertical-rhythm: ($line-height-base * 1em); $base-min-width: 320px; // Liks $base-link-color: $red; // Buttons $btn-color: $white !default; $btn-background: $black !default; $btn-padding: 0.4em 0.7em !default; $btn-font-size: 14px; // Forms $form-element-padding: $btn-padding; $form-element-border-color: $black; $form-element-focus-border-color: $red; $placeholder-color: $black; $headings-font-family: inherit !default; $headings-color: inherit !default; $animation-speed: 0.15s;