$custom-theme-colors: (
  primary,
  secondary,
  light,
  success,
  warning,
  danger,
  info,
  helper-default
);

@if ($has-custom-theme) {
  .has-custom-theme {
    .x-btn {
      @include custom-theme-btn($custom-theme-colors);
    }
    .x-text {
      @include custom-theme($custom-theme-colors, color);
    }
    .x-bg {
      @include custom-theme($custom-theme-colors, background-color);
    }
  }
}


//
//:root {
//  --custom-theme-primary: #8C2424;
//  --custom-theme-primary-hover: #D22020;
//  --custom-theme-primary-contrast: #ffffff;
//  --custom-theme-primary-rgb: 210,32,32;
//}
//
