@zesty-io/material 0.15.4 → 0.15.5
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/es/theme/index.js +4 -2
- package/package.json +1 -1
package/es/theme/index.js
CHANGED
|
@@ -313,8 +313,8 @@ const components = {
|
|
|
313
313
|
}),
|
|
314
314
|
// @ts-ignore
|
|
315
315
|
colorDefault: ({ theme }) => ({
|
|
316
|
-
backgroundColor: theme.palette.
|
|
317
|
-
color: theme.palette.text.
|
|
316
|
+
backgroundColor: theme.palette.grey[100],
|
|
317
|
+
color: theme.palette.text.secondary,
|
|
318
318
|
":hover": {
|
|
319
319
|
backgroundColor: theme.palette.grey[200],
|
|
320
320
|
},
|
|
@@ -322,6 +322,8 @@ const components = {
|
|
|
322
322
|
backgroundColor: theme.palette.grey[300],
|
|
323
323
|
},
|
|
324
324
|
"&.MuiChip-outlined": {
|
|
325
|
+
backgroundColor: theme.palette.background.paper,
|
|
326
|
+
color: theme.palette.text.primary,
|
|
325
327
|
borderColor: theme.palette.border,
|
|
326
328
|
},
|
|
327
329
|
}),
|