aboutsummaryrefslogtreecommitdiff
path: root/src/client/theme.ts
diff options
context:
space:
mode:
authorSophie Zhang <sophie_zhang@brown.edu>2023-07-07 21:39:38 -0400
committerSophie Zhang <sophie_zhang@brown.edu>2023-07-07 21:39:38 -0400
commit8e205268443f178a79526cf936fabf787691ec5d (patch)
tree0665f9994ed34b07268a87fca5a95720f213f411 /src/client/theme.ts
parente4ad92e7300ee7844a514379c8a01d0f01cb3a59 (diff)
api key, with mui
Diffstat (limited to 'src/client/theme.ts')
-rw-r--r--src/client/theme.ts42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/client/theme.ts b/src/client/theme.ts
new file mode 100644
index 000000000..57be370cc
--- /dev/null
+++ b/src/client/theme.ts
@@ -0,0 +1,42 @@
+import '@mui/material/styles';
+import { createTheme } from '@mui/material/styles';
+
+export const theme = createTheme({
+ palette: {
+ primary: {
+ main: 'rgb(0, 149, 246)',
+ },
+ },
+ // 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',
+ // },
+ // },
+ // },
+ // },
+ // },
+});