// Typography
$sans-serif: 'Roboto Condensed';
$serif: $georgia;
$base-font-family: $sans-serif;
$header-font-family: 'Roboto Condensed';

// Font Sizes
$base-font-size: 1em; // 16px
$h1-font-size: $base-font-size * 3; //48px
$h2-font-size: $base-font-size * 2; //32px
$h3-font-size: $base-font-size * 1.75; // 28px
$h4-font-size: $base-font-size * 1.5; //24px
$h5-font-size: $base-font-size * 1.25;// 20px
$h6-font-size: $base-font-size; 
$small-font-size: $base-font-size * 0.875; //14px

// Line height
$base-line-height: 1.5;
$header-line-height: 1.25;

// Other Sizes
$base-border-radius: 3px;
$base-spacing: $base-line-height * 1em;
$base-z-index: 0;

// Colors
$black: #000000;
$dark-gray: rgba($black, .87); // $gray-900: #212121;
$medium-gray: rgba($black, .54); // $gray-600: #757575;
$light-gray: rgba($black, .26);// $gray-400: #bdbdbd;
$lighter-gray: rgba($black, .12);//$gray-300: #e0e0e0;

$blue: #4dafff;
$light-red: #FBE3E4;
$light-yellow: #FFF6BF;
$light-green: #E6EFC2;

// Grey
$gray-50: #fafafa;
$gray-100: #f5f5f5;
$gray-200: #eeeeee;
$gray-300: #e0e0e0;
$gray-400: #bdbdbd;
$gray-500: #9e9e9e;
$gray-600: #757575;
$gray-700: #616161;
$gray-800: #424242;
$gray-900: #212121;
$black: #000000;
$white: #ffffff;


$primary-color: $blue;
// Background Color
$base-background-color: white;

// Font Colors
$base-font-color: $dark-gray;
$base-accent-color: $primary-color;

// Link Colors
$base-link-color: $base-accent-color;
$hover-link-color: darken($base-accent-color, 15);
$base-button-color: $base-link-color;
$hover-button-color: $hover-link-color;

// Flash Colors
$alert-color: $light-yellow;
$error-color: $light-red;
$notice-color: lighten($base-accent-color, 40);
$success-color: $light-green;

// Border color
$base-border-color: $light-gray;
$base-border: 1px solid $base-border-color;

// Forms
$form-border-color: $base-border-color;
$form-border-color-hover: darken($base-border-color, 10);
$form-border-color-focus: $base-accent-color;
$form-border-radius: $base-border-radius;
$form-box-shadow: inset 0 1px 3px rgba(black,0.06);
$form-box-shadow-focus: $form-box-shadow, 0 0 5px rgba(darken($form-border-color-focus, 5), 0.7);
$form-font-size: $base-font-size;
$form-font-family: $base-font-family;
