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

$scope: 'segmented-button';

$themes: (
  'light': (
    'border': rgba(color('light', 'primary-fill-1'), 0.3),
  ),
  'dark': (),
);

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

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