How to style bottom-sheet

Styles from the material/bottom-sheet package can be customized using the bottom-sheet-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.bottom-sheet-overrides((
    container-text-color: orange,
    container-background-color: red,
  ));
}
You can find the full list of supported mixins and tokens below.

Tokens supported by bottom-sheet-overrides

NameTypeBased on system token
container-shapeBase None
container-text-colorColor--mat-sys-on-surface
container-background-colorColor--mat-sys-surface-container-low
container-text-fontTypography--mat-sys-body-large-font
container-text-line-heightTypography--mat-sys-body-large-line-height
container-text-sizeTypography--mat-sys-body-large-size
container-text-trackingTypography--mat-sys-body-large-tracking
container-text-weightTypography--mat-sys-body-large-weight
Azure & Blue theme selected.