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

$scope: 'tabs';

$themes: (
  'light': (
    'primary-color': color('light', 'base-black'),
    'primary-disabled-color': rgb(color('light', 'base-black'), 0.3),
    'primary-text': rgb(color('light', 'base-black'), 0.6),
    'primary-divider-color': rgb(color('light', 'base-black'), 0.1),
  ),
  'dark': (
    'primary-color': color('dark', 'base-white'),
    'primary-disabled-color': rgb(color('dark', 'base-white'), 0.3),
    'primary-text': rgb(color('dark', 'base-white'), 0.6),
    'primary-divider-color': rgb(color('dark', 'base-white'), 0.1),
  ),
);

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

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