@am92/react-design-system 2.7.3 → 2.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Components/DsBackdrop/DsBackdrop.Overrides.d.ts +9 -1
- package/dist/Components/DsBackdrop/DsBackdrop.Overrides.js +9 -1
- package/dist/Components/DsCheckbox/DsCheckbox.Overrides.d.ts +32 -17
- package/dist/Components/DsCheckbox/DsCheckbox.Overrides.js +38 -23
- package/dist/Components/DsCheckbox/DsCheckbox.Types.js +4 -3
- package/dist/Components/DsDialog/DsDialog.Component.js +1 -1
- package/dist/Components/DsDialog/DsDialog.Overrides.js +1 -1
- package/dist/Components/DsDrawer/DsDrawer.Overrides.js +1 -1
- package/dist/Components/DsFab/DsFab.Overrides.d.ts +12 -4
- package/dist/Components/DsFab/DsFab.Overrides.js +38 -34
- package/dist/Theme/componentOverrides.d.ts +51 -21
- package/dist/Theme/getColorScheme/dark.js +1 -1
- package/dist/Theme/getColorScheme/highContrast.js +1 -1
- package/dist/Theme/getColorScheme/light.js +1 -1
- package/package.json +1 -1
|
@@ -4,17 +4,10 @@ export declare const DsCheckboxOverrides: {
|
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: {
|
|
6
6
|
color: string;
|
|
7
|
-
'
|
|
8
|
-
backgroundColor: string;
|
|
9
|
-
};
|
|
10
|
-
'&:focus:not(.Mui-checked)': {
|
|
11
|
-
backgroundColor: string;
|
|
12
|
-
};
|
|
13
|
-
'&.MuiCheckbox-colorPrimary.Mui-checked': {
|
|
7
|
+
'&.Mui-disabled': {
|
|
14
8
|
color: string;
|
|
15
9
|
};
|
|
16
|
-
'
|
|
17
|
-
color: string;
|
|
10
|
+
'&:not(.Mui-checked)': {
|
|
18
11
|
'&:hover': {
|
|
19
12
|
backgroundColor: string;
|
|
20
13
|
};
|
|
@@ -22,25 +15,47 @@ export declare const DsCheckboxOverrides: {
|
|
|
22
15
|
backgroundColor: string;
|
|
23
16
|
};
|
|
24
17
|
};
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
'&.MuiCheckbox-colorSuccess.Mui-checked': {
|
|
18
|
+
};
|
|
19
|
+
colorPrimary: {
|
|
20
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
29
21
|
color: string;
|
|
30
22
|
};
|
|
31
|
-
|
|
23
|
+
};
|
|
24
|
+
colorSecondary: {
|
|
25
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
32
26
|
color: string;
|
|
27
|
+
'&:hover': {
|
|
28
|
+
backgroundColor: string;
|
|
29
|
+
};
|
|
30
|
+
'&:focus': {
|
|
31
|
+
backgroundColor: string;
|
|
32
|
+
};
|
|
33
33
|
};
|
|
34
|
-
|
|
34
|
+
};
|
|
35
|
+
colorError: {
|
|
36
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
35
37
|
color: string;
|
|
36
38
|
};
|
|
37
|
-
|
|
39
|
+
};
|
|
40
|
+
colorSuccess: {
|
|
41
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
38
42
|
color: string;
|
|
39
43
|
};
|
|
40
|
-
|
|
44
|
+
};
|
|
45
|
+
colorWarning: {
|
|
46
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
41
47
|
color: string;
|
|
42
48
|
};
|
|
43
49
|
};
|
|
50
|
+
sizeSmall: {
|
|
51
|
+
fontSize: string;
|
|
52
|
+
};
|
|
53
|
+
sizeMedium: {
|
|
54
|
+
fontSize: string;
|
|
55
|
+
};
|
|
56
|
+
sizeLarge: {
|
|
57
|
+
fontSize: string;
|
|
58
|
+
};
|
|
44
59
|
};
|
|
45
60
|
};
|
|
46
61
|
};
|
|
@@ -5,16 +5,25 @@ export const DsCheckboxOverrides = {
|
|
|
5
5
|
styleOverrides: {
|
|
6
6
|
root: {
|
|
7
7
|
color: 'var(--ds-colour-iconDefault)',
|
|
8
|
-
'
|
|
9
|
-
|
|
10
|
-
},
|
|
11
|
-
'&:focus:not(.Mui-checked)': {
|
|
12
|
-
backgroundColor: 'var(--ds-colour-stateUnselectedHover)'
|
|
8
|
+
'&.Mui-disabled': {
|
|
9
|
+
color: 'var(--ds-colour-iconDisabled)'
|
|
13
10
|
},
|
|
14
|
-
'
|
|
11
|
+
'&:not(.Mui-checked)': {
|
|
12
|
+
'&:hover': {
|
|
13
|
+
backgroundColor: 'var(--ds-colour-stateUnselectedHover)'
|
|
14
|
+
},
|
|
15
|
+
'&:focus': {
|
|
16
|
+
backgroundColor: 'var(--ds-colour-stateUnselectedHover)'
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
colorPrimary: {
|
|
21
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
15
22
|
color: 'var(--ds-colour-iconActionPrimary)'
|
|
16
|
-
}
|
|
17
|
-
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
colorSecondary: {
|
|
26
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
18
27
|
color: 'var(--ds-colour-iconActionSecondary)',
|
|
19
28
|
'&:hover': {
|
|
20
29
|
backgroundColor: 'var(--ds-colour-stateSelectedPrimaryHover)'
|
|
@@ -22,25 +31,31 @@ export const DsCheckboxOverrides = {
|
|
|
22
31
|
'&:focus': {
|
|
23
32
|
backgroundColor: 'var(--ds-colour-stateSelectedPrimaryHover)'
|
|
24
33
|
}
|
|
25
|
-
}
|
|
26
|
-
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
colorError: {
|
|
37
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
27
38
|
color: 'var(--ds-colour-iconNegative)'
|
|
28
|
-
}
|
|
29
|
-
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
colorSuccess: {
|
|
42
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
30
43
|
color: 'var(--ds-colour-iconPositive)'
|
|
31
|
-
}
|
|
32
|
-
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
colorWarning: {
|
|
47
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
33
48
|
color: 'var(--ds-colour-iconWarning)'
|
|
34
|
-
},
|
|
35
|
-
'&.Mui-disabled': {
|
|
36
|
-
color: 'var(--ds-colour-iconDisabled)'
|
|
37
|
-
},
|
|
38
|
-
colorPrimary: {
|
|
39
|
-
color: 'var(--ds-colour-iconActionPrimary)'
|
|
40
|
-
},
|
|
41
|
-
colorSecondary: {
|
|
42
|
-
color: 'var(--ds-colour-iconActionSecondary)'
|
|
43
49
|
}
|
|
50
|
+
},
|
|
51
|
+
sizeSmall: {
|
|
52
|
+
fontSize: 'var(--ds-typo-fontSizeCold)'
|
|
53
|
+
},
|
|
54
|
+
sizeMedium: {
|
|
55
|
+
fontSize: 'var(--ds-typo-fontSizeMild)'
|
|
56
|
+
},
|
|
57
|
+
sizeLarge: {
|
|
58
|
+
fontSize: 'var(--ds-typo-fontSizeWarm)'
|
|
44
59
|
}
|
|
45
60
|
}
|
|
46
61
|
}
|
|
@@ -2,7 +2,8 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { DsRemixIcon } from '../DsRemixIcon';
|
|
3
3
|
export const DsCheckboxDefaultProps = {
|
|
4
4
|
color: 'secondary',
|
|
5
|
-
icon: _jsx(DsRemixIcon, { className: "ri-checkbox-blank-line", color: "inherit" }),
|
|
6
|
-
checkedIcon: _jsx(DsRemixIcon, { className: "ri-checkbox-fill", color: "inherit" }),
|
|
7
|
-
indeterminateIcon: (_jsx(DsRemixIcon, { className: "ri-checkbox-indeterminate-fill", color: "inherit" }))
|
|
5
|
+
icon: (_jsx(DsRemixIcon, { className: "ri-checkbox-blank-line", color: "inherit", fontSize: "inherit" })),
|
|
6
|
+
checkedIcon: (_jsx(DsRemixIcon, { className: "ri-checkbox-fill", color: "inherit", fontSize: "inherit" })),
|
|
7
|
+
indeterminateIcon: (_jsx(DsRemixIcon, { className: "ri-checkbox-indeterminate-fill", color: "inherit", fontSize: "inherit" })),
|
|
8
|
+
size: 'small'
|
|
8
9
|
};
|
|
@@ -93,6 +93,6 @@ export class DsDialog extends React.Component {
|
|
|
93
93
|
md: 'var(--ds-spacing-warm)'
|
|
94
94
|
},
|
|
95
95
|
...ActionsProps?.sx
|
|
96
|
-
}, children: [(secondaryButtonText || secondaryButtonProps?.children) && (_jsx(DsButton, { color: "secondary", size: "
|
|
96
|
+
}, children: [(secondaryButtonText || secondaryButtonProps?.children) && (_jsx(DsButton, { color: "secondary", size: "large", fullWidth: true, ...secondaryButtonProps, children: secondaryButtonText || secondaryButtonProps?.children })), (primaryButtonText || primaryButtonProps?.children) && (_jsx(DsButton, { size: "large", fullWidth: true, ...primaryButtonProps, children: primaryButtonText || primaryButtonProps?.children }))] }))] }));
|
|
97
97
|
}
|
|
98
98
|
}
|
|
@@ -2,7 +2,7 @@ export const DsDialogOverrides = {
|
|
|
2
2
|
MuiDialog: {
|
|
3
3
|
styleOverrides: {
|
|
4
4
|
paper: {
|
|
5
|
-
backgroundColor: 'var(--ds-colour-
|
|
5
|
+
backgroundColor: 'var(--ds-colour-surfaceBackground)',
|
|
6
6
|
borderRadius: 'var(--ds-radius-bitterCold)',
|
|
7
7
|
boxShadow: 'var(--ds-elevation-24)',
|
|
8
8
|
margin: 'var(--ds-spacing-glacial)',
|
|
@@ -5,10 +5,18 @@ export declare const DsFabOverrides: {
|
|
|
5
5
|
defaultProps: DsFabProps;
|
|
6
6
|
styleOverrides: {
|
|
7
7
|
root: CSSInterpolation;
|
|
8
|
+
sizeLarge: CSSInterpolation;
|
|
9
|
+
sizeMedium: CSSInterpolation;
|
|
10
|
+
sizeSmall: CSSInterpolation;
|
|
11
|
+
secondary: CSSInterpolation;
|
|
12
|
+
default: CSSInterpolation;
|
|
13
|
+
extended: {
|
|
14
|
+
borderRadius: string;
|
|
15
|
+
'.MuiTypography-root': {
|
|
16
|
+
marginLeft: string;
|
|
17
|
+
marginRight: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
8
20
|
};
|
|
9
|
-
variants: {
|
|
10
|
-
props: Partial<DsFabProps>;
|
|
11
|
-
style: CSSInterpolation;
|
|
12
|
-
}[];
|
|
13
21
|
};
|
|
14
22
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DsFabDefaultProps } from './DsFab.Types';
|
|
2
1
|
import STATE_STYLES from '../../Theme/STATE_STYLES';
|
|
2
|
+
import { DsFabDefaultProps } from './DsFab.Types';
|
|
3
3
|
export const DsFabOverrides = {
|
|
4
4
|
MuiFab: {
|
|
5
5
|
defaultProps: DsFabDefaultProps,
|
|
@@ -7,50 +7,54 @@ export const DsFabOverrides = {
|
|
|
7
7
|
root: {
|
|
8
8
|
boxShadow: 'var(--ds-elevation-8)',
|
|
9
9
|
textTransform: 'none',
|
|
10
|
+
minHeight: 'auto',
|
|
10
11
|
height: 'auto',
|
|
11
12
|
width: 'auto',
|
|
12
|
-
borderRadius: '
|
|
13
|
-
'
|
|
14
|
-
backgroundColor: 'var(--ds-colour-surfacePrimary)'
|
|
15
|
-
},
|
|
16
|
-
'&.MuiFab-extended .MuiTypography-root': {
|
|
13
|
+
borderRadius: '50%',
|
|
14
|
+
'.MuiTypography-root': {
|
|
17
15
|
fontWeight: 'var(--ds-typo-bodyBoldMedium-fontWeight)',
|
|
18
16
|
fontSize: 'var(--ds-typo-bodyBoldMedium-fontSize)',
|
|
19
17
|
lineHeight: 'var(--ds-typo-bodyBoldMedium-lineHeight)',
|
|
20
|
-
letterSpacing: 'var(--ds-typo-bodyBoldMedium-letterSpacing)'
|
|
21
|
-
marginLeft: 'var(--ds-spacing-glacial)'
|
|
18
|
+
letterSpacing: 'var(--ds-typo-bodyBoldMedium-letterSpacing)'
|
|
22
19
|
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
style: {
|
|
29
|
-
padding: 'var(--ds-spacing-bitterCold)',
|
|
30
|
-
'&.MuiFab-extended': {
|
|
31
|
-
paddingRight: 'var(--ds-spacing-mild)'
|
|
32
|
-
}
|
|
20
|
+
},
|
|
21
|
+
sizeLarge: {
|
|
22
|
+
padding: 'var(--ds-spacing-cool)',
|
|
23
|
+
'> .MuiSvgIcon-root': {
|
|
24
|
+
fontSize: 'var(--ds-typo-fontSizePleasant)'
|
|
33
25
|
}
|
|
34
26
|
},
|
|
35
|
-
{
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
fontSize: 'var(--ds-typo-fontSizeCool)',
|
|
40
|
-
'&.MuiFab-extended': {
|
|
41
|
-
paddingRight: 'var(--ds-spacing-bitterCold)'
|
|
42
|
-
},
|
|
43
|
-
'> .MuiIcon-root': {
|
|
44
|
-
fontSize: 'inherit'
|
|
45
|
-
}
|
|
27
|
+
sizeMedium: {
|
|
28
|
+
padding: 'var(--ds-spacing-bitterCold)',
|
|
29
|
+
'> .MuiSvgIcon-root': {
|
|
30
|
+
fontSize: 'var(--ds-typo-fontSizeMild)'
|
|
46
31
|
}
|
|
47
32
|
},
|
|
48
|
-
{
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
33
|
+
sizeSmall: {
|
|
34
|
+
padding: 'var(--ds-spacing-frostbite)',
|
|
35
|
+
'> .MuiSvgIcon-root': {
|
|
36
|
+
fontSize: 'var(--ds-typo-fontSizeCool)'
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
secondary: {
|
|
40
|
+
...STATE_STYLES.ACTION_SECONDARY_STATE_SECONDARY
|
|
41
|
+
},
|
|
42
|
+
default: {
|
|
43
|
+
backgroundColor: 'var(--ds-colour-surfacePrimary)',
|
|
44
|
+
borderWidth: '1px',
|
|
45
|
+
borderStyle: 'solid',
|
|
46
|
+
borderColor: 'var(--ds-colour-strokeDefault)',
|
|
47
|
+
'&:hover': {
|
|
48
|
+
backgroundColor: 'var(--ds-colour-stateUnselectedHover)'
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
extended: {
|
|
52
|
+
borderRadius: 'var(--ds-radius-pleasant)',
|
|
53
|
+
'.MuiTypography-root': {
|
|
54
|
+
marginLeft: 'var(--ds-spacing-glacial)',
|
|
55
|
+
marginRight: 'var(--ds-spacing-glacial)'
|
|
52
56
|
}
|
|
53
57
|
}
|
|
54
|
-
|
|
58
|
+
}
|
|
55
59
|
}
|
|
56
60
|
};
|
|
@@ -992,11 +992,19 @@ declare const componentOverrides: {
|
|
|
992
992
|
defaultProps: import("../Components").DsFabProps;
|
|
993
993
|
styleOverrides: {
|
|
994
994
|
root: import("@mui/system").CSSInterpolation;
|
|
995
|
+
sizeLarge: import("@mui/system").CSSInterpolation;
|
|
996
|
+
sizeMedium: import("@mui/system").CSSInterpolation;
|
|
997
|
+
sizeSmall: import("@mui/system").CSSInterpolation;
|
|
998
|
+
secondary: import("@mui/system").CSSInterpolation;
|
|
999
|
+
default: import("@mui/system").CSSInterpolation;
|
|
1000
|
+
extended: {
|
|
1001
|
+
borderRadius: string;
|
|
1002
|
+
'.MuiTypography-root': {
|
|
1003
|
+
marginLeft: string;
|
|
1004
|
+
marginRight: string;
|
|
1005
|
+
};
|
|
1006
|
+
};
|
|
995
1007
|
};
|
|
996
|
-
variants: {
|
|
997
|
-
props: Partial<import("../Components").DsFabProps>;
|
|
998
|
-
style: import("@mui/system").CSSInterpolation;
|
|
999
|
-
}[];
|
|
1000
1008
|
};
|
|
1001
1009
|
MuiDrawer: {
|
|
1002
1010
|
styleOverrides: {
|
|
@@ -1085,17 +1093,10 @@ declare const componentOverrides: {
|
|
|
1085
1093
|
styleOverrides: {
|
|
1086
1094
|
root: {
|
|
1087
1095
|
color: string;
|
|
1088
|
-
'
|
|
1089
|
-
backgroundColor: string;
|
|
1090
|
-
};
|
|
1091
|
-
'&:focus:not(.Mui-checked)': {
|
|
1092
|
-
backgroundColor: string;
|
|
1093
|
-
};
|
|
1094
|
-
'&.MuiCheckbox-colorPrimary.Mui-checked': {
|
|
1096
|
+
'&.Mui-disabled': {
|
|
1095
1097
|
color: string;
|
|
1096
1098
|
};
|
|
1097
|
-
'
|
|
1098
|
-
color: string;
|
|
1099
|
+
'&:not(.Mui-checked)': {
|
|
1099
1100
|
'&:hover': {
|
|
1100
1101
|
backgroundColor: string;
|
|
1101
1102
|
};
|
|
@@ -1103,25 +1104,47 @@ declare const componentOverrides: {
|
|
|
1103
1104
|
backgroundColor: string;
|
|
1104
1105
|
};
|
|
1105
1106
|
};
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
'&.MuiCheckbox-colorSuccess.Mui-checked': {
|
|
1107
|
+
};
|
|
1108
|
+
colorPrimary: {
|
|
1109
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
1110
1110
|
color: string;
|
|
1111
1111
|
};
|
|
1112
|
-
|
|
1112
|
+
};
|
|
1113
|
+
colorSecondary: {
|
|
1114
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
1113
1115
|
color: string;
|
|
1116
|
+
'&:hover': {
|
|
1117
|
+
backgroundColor: string;
|
|
1118
|
+
};
|
|
1119
|
+
'&:focus': {
|
|
1120
|
+
backgroundColor: string;
|
|
1121
|
+
};
|
|
1114
1122
|
};
|
|
1115
|
-
|
|
1123
|
+
};
|
|
1124
|
+
colorError: {
|
|
1125
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
1116
1126
|
color: string;
|
|
1117
1127
|
};
|
|
1118
|
-
|
|
1128
|
+
};
|
|
1129
|
+
colorSuccess: {
|
|
1130
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
1119
1131
|
color: string;
|
|
1120
1132
|
};
|
|
1121
|
-
|
|
1133
|
+
};
|
|
1134
|
+
colorWarning: {
|
|
1135
|
+
'&.Mui-checked&:not(.Mui-checked)': {
|
|
1122
1136
|
color: string;
|
|
1123
1137
|
};
|
|
1124
1138
|
};
|
|
1139
|
+
sizeSmall: {
|
|
1140
|
+
fontSize: string;
|
|
1141
|
+
};
|
|
1142
|
+
sizeMedium: {
|
|
1143
|
+
fontSize: string;
|
|
1144
|
+
};
|
|
1145
|
+
sizeLarge: {
|
|
1146
|
+
fontSize: string;
|
|
1147
|
+
};
|
|
1125
1148
|
};
|
|
1126
1149
|
};
|
|
1127
1150
|
MuiButton: {
|
|
@@ -1211,6 +1234,13 @@ declare const componentOverrides: {
|
|
|
1211
1234
|
};
|
|
1212
1235
|
};
|
|
1213
1236
|
};
|
|
1237
|
+
MuiBackdrop: {
|
|
1238
|
+
styleOverrides: {
|
|
1239
|
+
root: {
|
|
1240
|
+
backgroundColor: string;
|
|
1241
|
+
};
|
|
1242
|
+
};
|
|
1243
|
+
};
|
|
1214
1244
|
MuiAvatar: {
|
|
1215
1245
|
defaultProps: import("../Components").DsAvatarProps;
|
|
1216
1246
|
variants: ({
|
|
@@ -61,7 +61,7 @@ export default function getDarkModeColorScheme(colorPalette) {
|
|
|
61
61
|
stateUnselectedHover: hexToRgbA(secondaryGrey50, 0.2),
|
|
62
62
|
stateUnselectedPressed: hexToRgbA(secondaryGrey50, 0.25),
|
|
63
63
|
stateDisabledSurface: secondaryGrey100,
|
|
64
|
-
overlay: hexToRgbA(primaryBlack, 0.
|
|
64
|
+
overlay: hexToRgbA(primaryBlack, 0.8),
|
|
65
65
|
overlayLoader: hexToRgbA(primaryBlack, 0.3),
|
|
66
66
|
dotLoader: primaryWhite
|
|
67
67
|
};
|
|
@@ -61,7 +61,7 @@ export default function getHighContrastModeColorScheme(colorPalette) {
|
|
|
61
61
|
stateUnselectedHover: hexToRgbA(secondaryGrey50, 0.2),
|
|
62
62
|
stateUnselectedPressed: hexToRgbA(secondaryGrey50, 0.25),
|
|
63
63
|
stateDisabledSurface: secondaryGrey100,
|
|
64
|
-
overlay: hexToRgbA(primaryBlack, 0.
|
|
64
|
+
overlay: hexToRgbA(primaryBlack, 0.8),
|
|
65
65
|
overlayLoader: hexToRgbA(primaryBlack, 0.3),
|
|
66
66
|
dotLoader: primaryWhite
|
|
67
67
|
};
|
|
@@ -61,7 +61,7 @@ export default function getLightModeColorScheme(colorPalette) {
|
|
|
61
61
|
stateUnselectedHover: hexToRgbA(secondaryGrey50, 0.12),
|
|
62
62
|
stateUnselectedPressed: hexToRgbA(secondaryGrey50, 0.16),
|
|
63
63
|
stateDisabledSurface: secondaryGrey20,
|
|
64
|
-
overlay: hexToRgbA(primaryBlack, 0.
|
|
64
|
+
overlay: hexToRgbA(primaryBlack, 0.8),
|
|
65
65
|
overlayLoader: hexToRgbA(primaryWhite, 0.3),
|
|
66
66
|
dotLoader: secondary100
|
|
67
67
|
};
|