skip to Main Content

Css – Setting Mat-Button color in Angular Material 19 (M3)

I'm using angular material 19.0.3 and the m3 theming mechanism here's my style.scss html { color-scheme: light dark; @include mat.theme((color: ( primary: ft-green-theme.$primary-palette, tertiary: ft-green-theme.$tertiary-palette, ), typography: InterVariable, density: 0)); &[dir='rtl'] { @include mat.theme((typography: IranSans, )); } } body.light {…

VIEW QUESTION

Html – How to customize the color of mat checkbox in mat select options

How to customize the color of mat checkboxes in mat select options as seen below <mat-form-field appearance="fill" style="width:49%"> <mat-label>Select Group</mat-label> <mat-select [(ngModel)]="groupNames" name="group" multiple> <mat-option *ngFor="let group of GroupList" [value]="groupName"> {{groupName}} </mat-option> </mat-select> </mat-form-field> I tried inspecting the elements and…

VIEW QUESTION
Back To Top
Search