72 lines
1.3 KiB
TypeScript
72 lines
1.3 KiB
TypeScript
|
|
export const theme = {
|
||
|
|
palette: {
|
||
|
|
primary: {
|
||
|
|
main: "#337799",
|
||
|
|
},
|
||
|
|
secondary: {
|
||
|
|
light: "#5f5fc4",
|
||
|
|
main: "#283593",
|
||
|
|
dark: "#001064",
|
||
|
|
contrastText: "#fff",
|
||
|
|
},
|
||
|
|
background: {
|
||
|
|
default: "#fff",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
shape: {
|
||
|
|
borderRadius: 5,
|
||
|
|
},
|
||
|
|
typography: {
|
||
|
|
h6: { fontSize: 16, fontWeight: 600, color: "#1bb1bb" },
|
||
|
|
},
|
||
|
|
overrides: {
|
||
|
|
RaMenuItemLink: {
|
||
|
|
root: {
|
||
|
|
borderLeft: "3px solid #fff",
|
||
|
|
},
|
||
|
|
active: {
|
||
|
|
borderLeft: "3px solid #ef7706",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
MuiPaper: {
|
||
|
|
elevation1: {
|
||
|
|
boxShadow: "none",
|
||
|
|
},
|
||
|
|
root: {
|
||
|
|
border: "1px solid #e0e0e3",
|
||
|
|
backgroundClip: "padding-box",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
MuiButton: {
|
||
|
|
contained: {
|
||
|
|
backgroundColor: "#fff",
|
||
|
|
color: "#4f3cc9",
|
||
|
|
boxShadow: "none",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
MuiAppBar: {
|
||
|
|
colorSecondary: {
|
||
|
|
color: "#fff",
|
||
|
|
backgroundColor: "#337799",
|
||
|
|
border: 0,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
MuiLinearProgress: {
|
||
|
|
colorPrimary: {
|
||
|
|
backgroundColor: "#f5f5f5",
|
||
|
|
},
|
||
|
|
barColorPrimary: {
|
||
|
|
backgroundColor: "#d7d7d7",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
MuiFilledInput: {
|
||
|
|
root: {
|
||
|
|
backgroundColor: "rgba(0, 0, 0, 0.04)",
|
||
|
|
"&$disabled": {
|
||
|
|
backgroundColor: "rgba(0, 0, 0, 0.04)",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|