// BASIC THEME KEYS

// ## BASIC THEME COLOR KEYS MAP: This partial defines the basic theme's keys color map.
// - Map include semantic color keys scope tokens.
// - Map is collected into the $theme-basic-settings map and is interpolated into custom properties.

$theme-basic-keys: (
  primary-color: $primary-color,
  primary-hover-color: $primary-hover-color,
  surface-selected: $surface-selected,
  primary-selected-hover-color: $primary-selected-hover-color,
  primary-highlighted-color: $primary-highlighted-color,
  text-primary: $text-primary,
  text-secondary: $text-secondary,
  text-tertiary: $text-tertiary,
  text-color-on-primary: $text-color-on-primary,
  text-color-on-inverted: $text-color-on-inverted,
  placeholder-color: $placeholder-color,
  icon-primary: $icon-primary,
  link-color: $link-color,
  fixed-light-color: $fixed-light-color,
  fixed-dark-color: $fixed-dark-color,
  surface-primary: $surface-primary,
  surface-primary-hover: $surface-primary-hover,
  surface-secondary: $surface-secondary,
  surface-tertiary: $surface-tertiary,
  surface-quaternary: $surface-quaternary,
  surface-inverse: $surface-inverse,
  surface-success: $surface-success,
  surface-alert: $surface-alert,
  surface-warning: $surface-warning,
  disabled-background-color: $disabled-background-color,
  disabled-text-color: $disabled-text-color,
  positive-color: $positive-color,
  positive-color-hover: $positive-color-hover,
  positive-color-selected: $positive-color-selected,
  positive-color-selected-hover: $positive-color-selected-hover,
  positive-color-background: $positive-color-background,
  negative-color: $negative-color,
  negative-color-hover: $negative-color-hover,
  negative-color-selected: $negative-color-selected,
  negative-color-selected-hover: $negative-color-selected-hover,
  negative-color-background: $negative-color-background,
  divider-primary: $divider-primary,
  divider-secondary: $divider-secondary,
  divider-overlay: $divider-overlay,
  divider-halo: $divider-halo,
  divider-selected: $divider-selected,
  warning-color: $warning-color,
  warning-color-hover: $warning-color-hover,
  warning-color-selected: $warning-color-selected,
  warning-color-selected-hover: $warning-color-selected-hover,
  warning-color-background: $warning-color-background,
  brand-color: $primary-color,
  brand-hover-color: $primary-hover-color,
  brand-selected-color: $surface-selected,
  brand-selected-hover-color: $primary-selected-hover-color,
  text-color-on-brand: $text-color-on-primary
);

// ## BASIC THEME SHADOW MAP: basic theme's shadow color map.
// - Map include shadow scope tokens.
// - Map is collected into the $theme-basic-settings map and is interpolated into custom properties.

$theme-basic-shadow-keys: (
  box-shadow-xs: $box-shadow-xs,
  box-shadow-small: $box-shadow-small,
  box-shadow-medium: $box-shadow-medium,
  box-shadow-large: $box-shadow-large,
  shadow-color: $shadow-color
  );
