@use 'styles/helpers.scss' as *;

$scope: 'typography';

$themes: (
  'light': (
    'primary-color': color('light', 'base-text-primary'),
  ),
  'dark': (
    'primary-color': color('dark', 'base-text-primary'),
  ),
);

@mixin typography-theme-modifiers() {
  @include theme-modifiers($scope, $themes);
}

@function typography-theme-color($name) {
  @return theme-color($scope, $name);
}
