/*------------------------------------*\
    Local variables
\*------------------------------------*/

// Brand colors
// -------------------------
//** Global text color on `<body>`.
$primary-color: #3baed4;

$brand-primary: $primary-color;
$brand-success: #4f9b4b;
$brand-info: $primary-color;
$brand-warning: #cd9140;
$brand-danger: #b94641;

$light-color: #f2f2f2;

//== Scaffolding
//
//## Settings for some of the most global styles.

//** Global text color on `<body>`.
$text-color: #999999;

//** Global textual link color.
$link-color: $brand-primary;

// Transitions
// -------------------------
$primary-transition: all 100ms ease-out;

//== Typography
//
//## Font, line-height, and color for body text, headings, and more.
$primary-font: "Roboto", Helvetica, Arial, sans-serif;
$secondary-font: "Open Sans", Helvetica, Arial, sans-serif;

$font-family-sans-serif: $primary-font;

//** Unit-less `line-height` for use in components like buttons.
$line-height-base: 1.7;

//** By default, this inherits from the `<body>`.
$headings-font-family: $primary-font;
$headings-font-weight: bold;
$headings-color: #3d3d3d;

// Grid system
// -------------------------

// Point at which the navbar stops collapsing
$grid-float-breakpoint: 992px;

// font Awesome path
$fa-font-path: 'bower_components/font-awesome/fonts';

//== Buttons
//
//## For each of Bootstrap's buttons, define text, background and border color.

$btn-font-weight: bold;

$btn-primary-bg: $brand-primary;
$btn-primary-border: $brand-primary;

$btn-danger-bg: $brand-danger;
$btn-danger-border: $brand-danger;

$btn-success-bg: $brand-success;
$btn-success-border: $brand-success;

$btn-warning-bg: $brand-warning;
$btn-warning-border: $brand-warning;

$btn-info-color: #ffffff;
$btn-info-bg: transparent;
$btn-info-border: rgba(250, 250, 250, .5);

$btn-default-color: #999999;
$btn-default-bg: #ffffff;
$btn-default-border: #ffffff;

//== Forms
//
//##

//** `<input>` background color
$input-bg: $light-color;
//** `<input>` border color
$input-border: #eeeeee;
//** Border color for inputs on focus
$input-border-focus: #eeeeee;
