// Theme Config
body {
    --primary-color: #d14210;
    --primary-lighter-color: #f1c6b7;
    --primary-darker-color: #c02b09;
    --text-primary-color: #{$light-primary-text};
    --text-primary-lighter-color: #{$dark-primary-text};
    --text-primary-darker-color: #{$light-primary-text};
  }
  $theme-primary: mat-palette($mat-primary, main, lighter, darker);

  body {
    --accent-color: #2d2f32;
    --accent-lighter-color: #c0c1c2;
    --accent-darker-color: #1c1d1f;
    --text-accent-color: #{$light-primary-text};
    --text-accent-lighter-color: #{$dark-primary-text};
    --text-accent-darker-color: #{$light-primary-text};
  }
  $theme-accent: mat-palette($mat-accent, main, lighter, darker);

  body {
    --warn-color: #cc0000;
    --warn-lighter-color: #f0b3b3;
    --warn-darker-color: #b90000;
    --text-warn-color: #{$light-primary-text};
    --text-warn-lighter-color: #{$dark-primary-text};
    --text-warn-darker-color: #{$light-primary-text};
  }
  $theme-warn: mat-palette($mat-warn, main, lighter, darker);

  $theme: mat-light-theme($theme-primary, $theme-accent, $theme-warn);
  $altTheme: mat-dark-theme($theme-primary, $theme-accent, $theme-warn);



.mat-text--success {
  color: $success;
}

.mat-text--info {
  color: $info;
}

.mat-text--warn {
  color: $warning;
}

.mat-text--danger {
  color: mat-color($theme-warn);
}
