fix use of dev dependency

This commit is contained in:
Amruth Pillai
2023-07-12 16:21:46 +02:00
parent 3e93656f1f
commit fbc0ae8918

View File

@ -1,5 +1,4 @@
import { createTheme, ThemeOptions } from '@mui/material/styles'; import { createTheme, ThemeOptions } from '@mui/material/styles';
import colors from 'tailwindcss/colors';
const theme: ThemeOptions = { const theme: ThemeOptions = {
typography: { typography: {
@ -65,9 +64,9 @@ export const lightTheme = createTheme({
...theme, ...theme,
palette: { palette: {
mode: 'light', mode: 'light',
background: { default: colors.zinc[50], paper: colors.zinc[100] }, background: { default: '#fafafa', paper: '#f4f4f5' },
primary: { main: colors.zinc[900], ...colors.zinc }, primary: { main: '#18181b' },
secondary: { main: colors.teal[500], ...colors.teal }, secondary: { main: '#14b8a6' },
}, },
}); });
@ -75,8 +74,8 @@ export const darkTheme = createTheme({
...theme, ...theme,
palette: { palette: {
mode: 'dark', mode: 'dark',
background: { default: colors.zinc[950], paper: colors.zinc[900] }, background: { default: '#09090b', paper: '#18181b' },
primary: { main: colors.zinc[100], ...colors.zinc }, primary: { main: '#f4f4f5' },
secondary: { main: colors.teal[600], ...colors.teal }, secondary: { main: '#0d9488' },
}, },
}); });