// (C) 2007-2020 GoodData Corporation
// DO YOU REALLY KNOW WHAT YOU ARE DOING?

// foundations mixins imports
@import "foundations";

// base colors
$gd-color-highlight: #14b2e2;
$gd-color-positive: #00c18d;
$gd-color-negative: #e54d42;
$gd-color-warning: #fada23;
$gd-color-warning-text: #f18600;

// gray colors
$gd-color-white: #fff;
$gd-color-light: #fcfcfd;
$gd-color-disabled: #b0beca;
$gd-color-state-blank: #94a1ad;

$gd-color-link: #6d7680;
$gd-color-label: $gd-color-link;
$gd-color-text: #464e56;
$gd-color-text-dimmed: $gd-color-disabled;
$gd-color-text-light: #fff;
$gd-color-dark: #000;

$gd-border-color: #dde4eb;

// secondary colors
$gd-color-highlight-dimmed: mix($gd-color-highlight, $gd-color-text-light, 10%);
$gd-color-positive-dimmed: mix($gd-color-positive, $gd-color-text-light, 10%);
$gd-color-negative-dimmed: mix($gd-color-negative, $gd-color-text-light, 10%);
$gd-color-warning-dimmed: mix($gd-color-warning, $gd-color-text-light, 20%);
$gd-color-warning-label-dimmed: mix($gd-color-warning, $gd-color-text, 40%);
$gd-color-warning-label: mix($gd-color-warning, $gd-color-text, 20%);

// font and typo
$gd-font-primary: avenir, "Helvetica Neue", arial, sans-serif;

$gd-typo: (
    font-weights: (
        regular: 400,
        bold: 700,
    ),
    font-sizes: 24px 20px 17px 14px 12px 10px,
    line-heights: 1.4rem 1.8rem,
    heading-line-heights: 30px 26px 23px,
);

// colors
$is-focused-background: #ebeff4;
$is-focused-color: #000;

$is-selected-color: $gd-color-highlight;
$is-selected-background: none;

$is-selected-focused-color: $gd-color-highlight;
$is-selected-focused-background: $gd-color-highlight-dimmed;

$is-negative-focused-color: #fff;
$is-negative-focused-background: mix($gd-color-negative, $gd-color-text-light, 90%);

// other
$gd-rounded-small: 4px;

$importantFlag: "";
