-
-
Notifications
You must be signed in to change notification settings - Fork 285
/
Copy path_Colored.scss
20 lines (18 loc) · 917 Bytes
/
_Colored.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@use '@material/radio/mixins' as radio;
@use '@material/theme/color-palette';
.my-colored-radio {
@include radio.checked-stroke-color(color-palette.$green-600);
@include radio.ink-color(color-palette.$green-600);
@include radio.disabled-checked-stroke-color(color-palette.$green-900);
@include radio.disabled-ink-color(color-palette.$green-900);
@include radio.focus-indicator-color(color-palette.$green-100);
}
.my-fully-colored-radio {
@include radio.unchecked-stroke-color(color-palette.$green-600);
@include radio.checked-stroke-color(color-palette.$green-600);
@include radio.ink-color(color-palette.$green-600);
@include radio.disabled-unchecked-stroke-color(color-palette.$green-900);
@include radio.disabled-checked-stroke-color(color-palette.$green-900);
@include radio.disabled-ink-color(color-palette.$green-900);
@include radio.focus-indicator-color(color-palette.$green-100);
}