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

$scope: 'segmented-button';

$themes: (
  'light': (
    'background': rgba(color('light', 'primary-fill-1'), 0.05),
    'border': rgba(color('light', 'primary-fill-1'), 0.3),
    'hover-background': rgba(color('light', 'primary-fill-1'), 0.1),
    'selected-background': color('light', 'primary-fill-4'),
    'selected-hover-background': color('light', 'primary-fill-3'),
    'disabled-selected-background': rgba(color('light', 'primary-fill-4'), 0.5),
  ),
  'dark': (),
);

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

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