How to style paginator

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

Tokens supported by paginator-overrides

NameTypeBased on system token
container-text-colorColor--mat-sys-on-surface
container-background-colorColor--mat-sys-surface
enabled-icon-colorColor--mat-sys-on-surface-variant
disabled-icon-colorColor--mat-sys-on-surface
container-text-fontTypography--mat-sys-body-small-font
container-text-line-heightTypography--mat-sys-body-small-line-height
container-text-sizeTypography--mat-sys-body-small-size
container-text-trackingTypography--mat-sys-body-small-tracking
container-text-weightTypography--mat-sys-body-small-weight
select-trigger-text-sizeTypography--mat-sys-body-small-size
container-sizeDensity None
form-field-container-heightDensity None
form-field-container-vertical-paddingDensity None
touch-target-displayDensity None
Azure & Blue theme selected.