How to style radio

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

Tokens supported by radio-overrides

NameTypeBased on system token
disabled-selected-icon-opacityBase None
disabled-unselected-icon-opacityBase None
state-layer-sizeDensity None
disabled-selected-icon-colorColor--mat-sys-on-surface
disabled-unselected-icon-colorColor--mat-sys-on-surface
unselected-hover-icon-colorColor--mat-sys-on-surface
unselected-focus-icon-colorColor--mat-sys-on-surface
unselected-icon-colorColor--mat-sys-on-surface-variant
unselected-pressed-icon-colorColor--mat-sys-on-surface
selected-focus-icon-colorColor--mat-sys-primary
selected-hover-icon-colorColor--mat-sys-primary
selected-icon-colorColor--mat-sys-primary
selected-pressed-icon-colorColor--mat-sys-primary
ripple-colorColor--mat-sys-on-surface
checked-ripple-colorColor--mat-sys-primary
disabled-label-colorColor--mat-sys-on-surface
label-text-colorColor--mat-sys-on-surface
label-text-fontTypography--mat-sys-body-medium-font
label-text-line-heightTypography--mat-sys-body-medium-line-height
label-text-sizeTypography--mat-sys-body-medium-size
label-text-trackingTypography--mat-sys-body-medium-tracking
label-text-weightTypography--mat-sys-body-medium-weight
touch-target-displayDensity None
Azure & Blue theme selected.