How to style progress-bar

Styles from the material/progress-bar package can be customized using the progress-bar-overrides mixin. This mixin accepts a set of tokens that control how the components will look, either for the entire app or under a specific selector. For example:
@use '@angular/material' as mat;

// Customize the entire app. Change :root to your selector if you want to scope the styles.
:root {
  @include mat.progress-bar-overrides((
    active-indicator-color: orange,
    track-color: red,
  ));
}
You can find the full list of supported mixins and tokens below.

Tokens supported by progress-bar-overrides

NameTypeBased on system token
active-indicator-heightBase None
track-heightBase None
track-shapeBase None
active-indicator-colorColor--mat-sys-primary
track-colorColor--mat-sys-surface-variant
Azure & Blue theme selected.