vuematerial/vue-material

View on GitHub
src/components/MdContent/theme.scss

Summary

Maintainability
Test Coverage
.md-content {
  @include md-theme-component() {
    @include md-theme-property(background-color, background);
    @include md-theme-property(color, text-primary, background);

    &.md-primary {
      @include md-theme-property(background-color, primary);
      @include md-theme-property(color, text-primary, primary);
    }

    &.md-accent {
      @include md-theme-property(background-color, accent);
      @include md-theme-property(color, text-primary, accent);
    }

    .md-app & {
      @include md-theme-property(border-left-color, divider, background);
      @include md-theme-property(border-right-color, divider, background);
    }
  }
}