// Typography
$sans-serif: $helvetica;
$serif: $georgia;
$accent-font-family: 'Oxygen', $sans-serif;
$base-font-family: 'Dosis', $sans-serif;
$header-font-family: 'Yanone Kaffeesatz', $serif;

// Font Sizes
$base-font-size: 1em;
$h1-font-size: $base-font-size * 2.25;
$h2-font-size: $base-font-size * 2;
$h3-font-size: $base-font-size * 1.75;
$h4-font-size: $base-font-size * 1.5;
$h5-font-size: $base-font-size * 1.25;
$h6-font-size: $base-font-size;

// 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;

// Flat UI Colors
$flat-red: #e74c3c;
$flat-red-dark: #c0392b;

$dark-gray: #252525;
$flat-gray-dark: #7f8c8d;
$flat-gray: #bdc3c7;
$flat-gray-light: #ecf0f1;

$flat-green: #2ecc71;
$flat-green-dark: #355E3B;

$flat-blue: #3498db;
$flat-blue-dark: #2980b9;

$flat-purple: #6F5092;
$flat-purple-dark: #8e44ad;

$flat-yellow: #f1c40f;
$flat-yellow-dark: #f39c12;

$flat-orange: #e67e22;
$flat-orange-dark: #d35400;

$base-button-color: $flat-yellow-dark;
$hover-button-color: darken($base-button-color, 15);

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

// Font Colors
$base-font-color: #202020;
$base-accent-color: $flat-blue;

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

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

// Border color
$base-border-color: $flat-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;
