|
@@ -437,40 +437,35 @@ const generateAlertTheme = (colors: BaseColors, alias: Aliases) => ({
|
|
|
backgroundLight: alias.backgroundSecondary,
|
|
|
border: alias.border,
|
|
|
borderHover: alias.border,
|
|
|
- iconColor: 'inherit',
|
|
|
- iconHoverColor: 'inherit',
|
|
|
+ color: 'inherit',
|
|
|
},
|
|
|
info: {
|
|
|
background: colors.blue300,
|
|
|
backgroundLight: colors.blue100,
|
|
|
border: colors.blue200,
|
|
|
borderHover: colors.blue300,
|
|
|
- iconColor: colors.blue400,
|
|
|
- iconHoverColor: colors.blue400,
|
|
|
+ color: colors.blue400,
|
|
|
},
|
|
|
warning: {
|
|
|
background: colors.yellow300,
|
|
|
backgroundLight: colors.yellow100,
|
|
|
border: colors.yellow200,
|
|
|
borderHover: colors.yellow300,
|
|
|
- iconColor: colors.yellow400,
|
|
|
- iconHoverColor: colors.yellow400,
|
|
|
+ color: colors.yellow400,
|
|
|
},
|
|
|
success: {
|
|
|
background: colors.green300,
|
|
|
backgroundLight: colors.green100,
|
|
|
border: colors.green200,
|
|
|
borderHover: colors.green300,
|
|
|
- iconColor: colors.green400,
|
|
|
- iconHoverColor: colors.green400,
|
|
|
+ color: colors.green400,
|
|
|
},
|
|
|
error: {
|
|
|
background: colors.red300,
|
|
|
backgroundLight: colors.red100,
|
|
|
border: colors.red200,
|
|
|
borderHover: colors.red300,
|
|
|
- iconColor: colors.red400,
|
|
|
- iconHoverColor: colors.red400,
|
|
|
+ color: colors.red400,
|
|
|
textLight: colors.red200,
|
|
|
},
|
|
|
});
|