@import '../core/theming/palette';
@import '../core/theming/theming';

@mixin sam-progress-theme ($theme) {
  $background: map-get($theme, background);

  .sam.progress .bar {
    background-color: sam-color($background, progress-bar-background);
  }
  
  .sam.progress .bar .fill {
    background-color: sam-color($background, progress-bar-fill);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
  }
}
