aboutsummaryrefslogtreecommitdiff
path: root/src/client/theme.ts
diff options
context:
space:
mode:
authorSophie Zhang <sophie_zhang@brown.edu>2023-07-18 13:32:49 -0400
committerSophie Zhang <sophie_zhang@brown.edu>2023-07-18 13:32:49 -0400
commite332c268c013efbc7409bf0072b66e8bf646dfef (patch)
tree5ae9d7cbc59c7b9d0d0e45d3bdb75cb6eba49cbb /src/client/theme.ts
parent8410cd330b676ce50948b2ec1011a72b219ee87b (diff)
theming
Diffstat (limited to 'src/client/theme.ts')
-rw-r--r--src/client/theme.ts31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/client/theme.ts b/src/client/theme.ts
index 0ef2e5e2c..e69de29bb 100644
--- a/src/client/theme.ts
+++ b/src/client/theme.ts
@@ -1,31 +0,0 @@
-import '@mui/material/styles';
-import { createTheme } from '@mui/material/styles';
-
-export const theme = createTheme({
- palette: {
- primary: {
- main: '#4476f7',
- },
- },
- components: {
- MuiButton: {
- styleOverrides: {
- root: {
- fontSize: '14px',
- boxShadow: 'none',
- '&:hover': {
- boxShadow: 'none',
- },
- },
- },
- },
-
- MuiTooltip: {
- styleOverrides: {
- tooltip: {
- fontSize: '12px',
- },
- },
- },
- },
-});