Newer
Older
import { createMuiTheme } from "@material-ui/core/styles";
import { colorRed, colorBlue, colorBlackFont, colorGrayLight } from "./colors";
import ButtonOverrides from "./overrides/buttons";
export const themeConfig = {
props: {
MuiButton: {
color: "secondary",
},
MuiLink: {
color: "secondary",
},
},
MuiButton: ButtonOverrides,
MuiFormLabel: {
root: {
"&$focused": {
color: colorBlue,
},
},
},
},
"@media (hover: none)": {
"&:hover $notchedOutline": {
borderColor: colorBlue,
},
},
"&$focused $notchedOutline": {
shape: {
borderRadius: 2,
},
export const theme = createMuiTheme(themeConfig);