File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 23
23
}
24
24
25
25
.mat-button-toggle-checked {
26
- background-color : mat-color ($mat-grey , 300 );
26
+ background-color : mat-color ($background , selected-button );
27
27
color : mat-color ($foreground , base );
28
28
}
29
29
30
30
.mat-button-toggle-disabled {
31
- background-color : map_get ( $ mat-grey , 200 );
31
+ background-color : mat-color ( $background , disabled-button-toggle );
32
32
color : mat-color ($foreground , disabled-button );
33
33
34
34
& .mat-button-toggle-checked {
35
- background-color : mat-color ($mat-grey , 400 );
35
+ background-color : mat-color ($background , selected-disabled-button );
36
36
}
37
37
}
38
38
}
Original file line number Diff line number Diff line change @@ -656,6 +656,9 @@ $mat-light-theme-background: (
656
656
disabled-button : $black-12-opacity ,
657
657
raised-button : white ,
658
658
focused-button : $black-6-opacity ,
659
+ selected-button : map_get ($mat-grey , 300 ),
660
+ selected-disabled-button : map_get ($mat-grey , 400 ),
661
+ disabled-button-toggle : map_get ($mat-grey , 200 ),
659
662
);
660
663
661
664
// Background palette for dark themes.
@@ -669,6 +672,9 @@ $mat-dark-theme-background: (
669
672
disabled-button : $white-12-opacity ,
670
673
raised-button : map-get ($mat-grey , 800 ),
671
674
focused-button : $white-6-opacity ,
675
+ selected-button : map_get ($mat-grey , 900 ),
676
+ selected-disabled-button : map_get ($mat-grey , 800 ),
677
+ disabled-button-toggle : map_get ($mat-grey , 1000 ),
672
678
);
673
679
674
680
// Foreground palette for light themes.
You can’t perform that action at this time.
0 commit comments