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


@mixin md-tabs-theme($theme) {
  $primary: map-get($theme, primary);
  $accent: map-get($theme, accent);
  $warn: map-get($theme, warn);
  $background: map-get($theme, background);
  $foreground: map-get($theme, foreground);

  [md-tab-nav-bar],
  .md-tab-header {
    border-bottom: 1px solid md-color($background, status-bar);
  }
  
  .md-tab-label:focus {
    background-color: md-color($primary, 100, 0.3);
  }
  
  md-ink-bar {
    background-color: md-color($primary, 500);
  }
}
