@brightlayer-ui/react-themes
Version:
React themes for Brightlayer UI applications
21 lines (20 loc) • 668 B
JavaScript
import { BLUIColors } from '@brightlayer-ui/colors';
import Color from 'color';
export default {
styleOverrides: {
dot: ({ theme }) => ({
backgroundColor: BLUIColors.gray[200],
margin: `0px 4px`,
...theme.applyStyles('dark', {
backgroundColor: Color(BLUIColors.black[300]).alpha(0.36).string(),
margin: `0px 4px`,
}),
}),
dotActive: ({ theme }) => ({
backgroundColor: theme.vars.palette.primary.main,
...theme.applyStyles('dark', {
backgroundColor: theme.vars.palette.primary.dark,
}),
}),
},
};