File tree Expand file tree Collapse file tree 2 files changed +36
-4
lines changed Expand file tree Collapse file tree 2 files changed +36
-4
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,18 @@ const dataTableTheme = (theme: Theme) =>
12
12
width : '-webkit-fill-available' ,
13
13
'@media (max-width: 500px)' : {
14
14
wordWrap : 'break-word'
15
- }
15
+ } ,
16
+ background : theme . palette . background . constant ?. table ,
17
+ color : theme . palette . text . default
16
18
}
17
19
}
18
20
} ,
19
21
MUIDataTableHeadCell : {
20
22
styleOverrides : {
21
23
data : {
22
24
fontWeight : 'bold' ,
23
- textTransform : 'uppercase'
25
+ textTransform : 'uppercase' ,
26
+ color : theme . palette . text . default
24
27
} ,
25
28
root : {
26
29
fontWeight : 'bold' ,
@@ -74,6 +77,30 @@ const dataTableTheme = (theme: Theme) =>
74
77
}
75
78
}
76
79
} ,
80
+ MuiTableCell : {
81
+ styleOverrides : {
82
+ body : {
83
+ color : theme . palette . text . default
84
+ } ,
85
+ root : {
86
+ borderBottom : 'none'
87
+ }
88
+ }
89
+ } ,
90
+ MUIDataTablePagination : {
91
+ styleOverrides : {
92
+ toolbar : {
93
+ color : theme . palette . text . default
94
+ }
95
+ }
96
+ } ,
97
+ MUIDataTableSelectCell : {
98
+ styleOverrides : {
99
+ headerCell : {
100
+ background : theme . palette . background . constant ?. table
101
+ }
102
+ }
103
+ } ,
77
104
MuiInput : {
78
105
styleOverrides : {
79
106
root : {
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ declare module '@mui/material/styles' {
33
33
constant ?: {
34
34
disabled : string ;
35
35
white : string ;
36
+ table : string ;
36
37
} ;
37
38
inverse ?: string ;
38
39
brand ?: Interactiveness ;
@@ -84,6 +85,7 @@ declare module '@mui/material/styles' {
84
85
constant ?: {
85
86
white : string ;
86
87
disabled : string ;
88
+ table : string ;
87
89
} ;
88
90
inverse ?: string ;
89
91
brand ?: Interactiveness ;
@@ -116,6 +118,7 @@ declare module '@mui/material/styles' {
116
118
constant ?: {
117
119
white : string ;
118
120
disabled : string ;
121
+ table : string ;
119
122
} ;
120
123
inverse ?: string ;
121
124
brand ?: Interactiveness ;
@@ -252,7 +255,8 @@ export const lightModePalette: PaletteOptions = {
252
255
code : Colors . charcoal [ 90 ] ,
253
256
constant : {
254
257
white : Colors . accentGrey [ 100 ] ,
255
- disabled : Colors . charcoal [ 70 ]
258
+ disabled : Colors . charcoal [ 70 ] ,
259
+ table : Colors . charcoal [ 100 ]
256
260
} ,
257
261
surfaces : Colors . accentGrey [ 100 ]
258
262
} ,
@@ -365,7 +369,8 @@ export const darkModePalette: PaletteOptions = {
365
369
code : Colors . accentGrey [ 90 ] ,
366
370
constant : {
367
371
white : Colors . accentGrey [ 100 ] ,
368
- disabled : Colors . charcoal [ 70 ]
372
+ disabled : Colors . charcoal [ 70 ] ,
373
+ table : '#363636'
369
374
} ,
370
375
surfaces : Colors . accentGrey [ 10 ]
371
376
} ,
You can’t perform that action at this time.
0 commit comments