@use 'sass:color';
@use 'sass:map';
@use '../core/tokens/m2-utils';
@use '../core/tokens/m3-utils';

@function get-tokens($theme) {
  @return (
    base: (),
    color: private-get-color-palette-color-tokens($theme, primary),
    typography: (),
    density: ()
  );
}

// Tokens that can be configured through Angular Material's color theming API.
@function private-get-color-palette-color-tokens($theme, $color-variant) {
  $system: m2-utils.get-system($theme);
  $system: m3-utils.replace-colors-with-variant($system, primary, $color-variant);

  @return (
    colorpicker-toggle-active-state-icon-color: map.get($system, primary),
    colorpicker-toggle-icon-color: map.get($system, on-surface-variant)
  );
}
