We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a687d4f commit 3156faeCopy full SHA for 3156fae
1 file changed
javascript/grid-ui/src/theme/theme.tsx
@@ -1,9 +1,8 @@
1
-import { createTheme, Theme, adaptV4Theme } from '@mui/material/styles'
+import { createTheme, Theme } from '@mui/material/styles'
2
import typography from './typography'
3
-import { red } from '@mui/material/colors'
4
5
// A custom theme for this app
6
-const theme: Theme = createTheme(adaptV4Theme({
+const theme: Theme = createTheme({
7
palette: {
8
primary: {
9
main: '#615E9B'
@@ -12,13 +11,13 @@ const theme: Theme = createTheme(adaptV4Theme({
12
11
main: '#F7F8F8'
13
},
14
error: {
15
- main: red.A400
+ main: '#FF1744'
16
17
background: {
18
default: '#F7F8F8'
19
}
20
21
typography
22
-}))
+})
23
24
export default theme
0 commit comments