@use "sb-element/core/theming";
/*****************************************************************************
Calendar-Year / Theme
******************************************************************************/

// THEME
@mixin theme($theme) {
  .sb-calendar-year {

    &:hover {
      background: theming.get-accent($theme);
      span {
        color: theming.get-accent-text($theme);
      }
    }

    @include theming.for-each-color($theme) using ($color) {
      &.sb--#{$color} {
        &.marked, &.marked:hover, &.marked.disabled:hover {
          background: theming.get-color($theme, $color);
          span {
            color: theming.get-text($theme, $color);
          }
        }
      }    
    }
  }
}
