diff options
| author | Sophie Zhang <sophie_zhang@brown.edu> | 2023-07-08 02:58:04 -0400 |
|---|---|---|
| committer | Sophie Zhang <sophie_zhang@brown.edu> | 2023-07-08 02:58:04 -0400 |
| commit | c8eb4ac0242181744d3268b1052582b61dbaf477 (patch) | |
| tree | acf49f05715e9933c3d0aa13397220694aebd78b /src/client/theme.ts | |
| parent | 8e205268443f178a79526cf936fabf787691ec5d (diff) | |
feat: updated github key and ui
Diffstat (limited to 'src/client/theme.ts')
| -rw-r--r-- | src/client/theme.ts | 47 |
1 files changed, 14 insertions, 33 deletions
diff --git a/src/client/theme.ts b/src/client/theme.ts index 57be370cc..f0a11fe6e 100644 --- a/src/client/theme.ts +++ b/src/client/theme.ts @@ -4,39 +4,20 @@ import { createTheme } from '@mui/material/styles'; export const theme = createTheme({ palette: { primary: { - main: 'rgb(0, 149, 246)', + main: '#4476f7', + }, + }, + components: { + MuiButton: { + styleOverrides: { + root: { + fontSize: '14px', + boxShadow: 'none', + '&:hover': { + boxShadow: 'none', + }, + }, + }, }, }, - // components: { - // MuiButton: { - // styleOverrides: { - // root: { - // fontSize: '14px', - // boxShadow: 'none', - // '&:hover': { - // boxShadow: 'none', - // scale: 1, - // }, - // }, - // }, - // }, - // MuiTextField: { - // styleOverrides: { - // root: { - // '& .MuiInputBase-input': { - // fontSize: '16px', - // }, - // '& .MuiInputLabel-root': { - // fontSize: '16px', - // }, - // '& .MuiInputLabel-shrink': { - // fontSize: '16px', - // }, - // '& .MuiFormHelperText-root': { - // fontSize: '16px', - // }, - // }, - // }, - // }, - // }, }); |
