-
-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy path_Colored.scss
More file actions
20 lines (18 loc) · 923 Bytes
/
Copy path_Colored.scss
File metadata and controls
20 lines (18 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@use '@smui/radio/styles/mixins' as radio;
@use '@smui/common/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);
}