We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a0a636 commit 6343272Copy full SHA for 6343272
packages/ra-ui-materialui/src/list/BulkActionsToolbar.tsx
@@ -10,6 +10,7 @@ import {
10
styled,
11
useThemeProps,
12
lighten,
13
+ darken,
14
} from '@mui/material/styles';
15
import clsx from 'clsx';
16
import Toolbar from '@mui/material/Toolbar';
@@ -124,7 +125,7 @@ const Root = styled('div', {
124
125
? theme.vars.palette.bulkActionsToolbarBackgroundColor
126
: theme.palette.mode === 'light'
127
? lighten(theme.palette.primary.light, 0.8)
- : theme.palette.primary.dark,
128
+ : darken(theme.palette.primary.dark, 0.5),
129
minHeight: theme.spacing(6),
130
height: theme.spacing(6),
131
paddingRight: theme.spacing(2),
0 commit comments