$custom-theme-colors: (
  primary,
  primary-lighter,
  primary-darker,
  secondary,
  secondary-darker,
  secondary-lighter,
  light,
  light-secondary,
  dark,
  dark-secondary
);

@if ($has-custom-theme) {
  .has-custom-theme {

    %border,
    .border {
      @include custom-theme($custom-theme-colors, border-color);
    }

    %btn,
    %badge,
    %x-btn,
    .btn,
    .badge,
    .x-btn {
      @include custom-theme-btn($custom-theme-colors);
    }
  }
}





