@brightlayer-ui/react-themes
Version:
React themes for Brightlayer UI applications
16 lines (15 loc) • 452 B
JavaScript
import { BLUIColors } from '@brightlayer-ui/colors';
export default {
styleOverrides: {
paper: ({ theme }) => ({
...theme.applyStyles('dark', {
backgroundColor: BLUIColors.darkBlack[300],
}),
}),
paperAnchorBottom: ({ theme }) => ({
...theme.applyStyles('dark', {
backgroundColor: theme.vars.palette.background.paper,
}),
}),
},
};