//
//In certain cases, you need to copy-paste a whole section from variables-reference.
//For example, to modify the color assigned to 'success',
//take the whole Color system section, since the $theme-colors function relies on variables defined within the section.
//

//
// Color system
//

$white: #fff;
$gray-100: #f8f9fa;
$gray-200: #e9ecef;
$gray-300: #dee2e6;
$gray-400: #ced4da;
$gray-500: #adb5bd;
$gray-600: #868e96;
$gray-700: #495057;
$gray-800: #343a40;
$gray-900: #212529;
$black: #000;

$grays: ();
$grays: map-merge(
  (
    '100': $gray-100,
    '200': $gray-200,
    '300': $gray-300,
    '400': $gray-400,
    '500': $gray-500,
    '600': $gray-600,
    '700': $gray-700,
    '800': $gray-800,
    '900': $gray-900,
  ),
  $grays
);

$blue: $mm-core-digital-blue-70;
$indigo: #6610f2;
$purple: $mm-qual-purple;
$pink: #e83e8c;
$red: $mm-sem-neg-60;
$orange: $mm-qual-orange;
$yellow: $mm-sem-caution-60;
$green: $mm-sem-pos-60;
$teal: $mm-qual-aqua;
$cyan: #17a2b8;

$colors: ();
$colors: map-merge(
  (
    blue: $blue,
    indigo: $indigo,
    purple: $purple,
    pink: $pink,
    red: $red,
    orange: $orange,
    yellow: $yellow,
    green: $green,
    teal: $teal,
    cyan: $cyan,
    white: $white,
    gray: $gray-600,
    gray-dark: $gray-800,
  ),
  $colors
);

$primary: $blue;
$secondary: $mm-neutral-gray-80;
$success: $green;
$info: $teal;
$warning: $yellow;
$danger: $red;
$light: $mm-neutral-gray-30;
$dark: $mm-core-brand-blue-90;
$white: $mm-neutral-white;
$gray-blue: $mm-neutral-gray-40;

$theme-colors: ();
$theme-colors: map-merge(
  (
    'primary': $primary,
    'secondary': $secondary,
    'success': $success,
    'info': $info,
    'warning': $warning,
    'danger': $danger,
    'light': $light,
    'dark': $dark,
    'white': $white,
    'gray-blue': $gray-blue,
  ),
  $theme-colors
);

// Set a specific jump point for requesting color jumps
$theme-color-interval: 8%;

//for input group background
$input-group-addon-bg: $mm-neutral-white;
