@jeact/mui-dynamic-theme
Version:
Adds dynamism to the MUI theme, like dark-mode, theme togglers and more colors
15 lines • 500 B
JavaScript
import { MaterialUI } from '@jeact/colors';
var blue = MaterialUI.blue, grey = MaterialUI.grey, red = MaterialUI.red, cyan = MaterialUI.cyan, green = MaterialUI.green, amber = MaterialUI.amber;
/**
* Override the MUI default colors with the Bootstrap theme colors.
*/
var bootstrapPalette = {
primary: blue,
secondary: grey,
error: red,
info: cyan,
success: green,
warning: amber
};
export default bootstrapPalette;
//# sourceMappingURL=bootstrapPalette.js.map