add companyName to getPlayer

This commit is contained in:
Olivier Gagnon
2021-09-13 17:11:02 -04:00
parent 4ad5b06e19
commit e345edb74f
8 changed files with 63 additions and 52 deletions
+10 -2
View File
@@ -4,9 +4,10 @@ import { createMuiTheme } from "@material-ui/core/styles";
import { ThemeProvider } from "@material-ui/core/styles";
export const colors = {
primary: "#0f0",
primarylight: "#0f0",
primary: "#0c0",
primarydark: "#090",
primarydarker: "#030",
well: "#222",
};
export const theme = createMuiTheme({
@@ -21,6 +22,13 @@ export const theme = createMuiTheme({
textTransform: "none",
},
},
overrides: {
MuiInputBase: {
root: {
backgroundColor: colors.well,
},
},
},
});
interface IProps {