@brightlayer-ui/react-themes
Version:
React themes for Brightlayer UI applications
16 lines (15 loc) • 450 B
JavaScript
export default {
styleOverrides: {
root: ({ theme }) => ({
...theme.applyStyles('dark', {
color: theme.vars.palette.text.secondary,
}),
}),
indicator: ({ theme }) => ({
backgroundColor: theme.vars.palette.background.paper,
...theme.applyStyles('dark', {
backgroundColor: theme.vars.palette.primary.main,
}),
}),
},
};