$primary: $blue !default;
$secondary: $gray-600 !default;
$success: $green !default;
$info: $teal !default;
$warning: $orange !default;
$danger: $red !default;
$light: $gray-100 !default;
$dark: $gray-800 !default;
$disabled: $gray-400 !default;
$focus: $primary !default;
$theme-colors-base: (
  primary: $primary,
  secondary: $secondary,
  success: $success,
  info: $info,
  warning: $warning,
  danger: $danger,
  light: $light,
  dark: $dark,
) !default;
$theme-colors: map-merge(
  (
    help: $purple-300,
    assist: $yellow-300,
  ),
  $theme-colors-base,
) !default;
$alert-theme-colors: map-remove($theme-colors, "primary", "secondary", "light", "dark") !default;
$badge-theme-colors: $theme-colors-base !default;
$button-theme-colors: $theme-colors-base !default;
$card-theme-colors: $theme-colors-base !default;
