mui / mui-x

MUI X: Build complex and data-rich applications using a growing list of advanced React components, like the Data Grid, Date and Time Pickers, Charts, and more!
https://mui.com/x/
4.56k stars 1.33k forks source link

[data grid] Add a default background color to the data grid #15517

Open KenanYusuf opened 5 days ago

KenanYusuf commented 5 days ago

See the following issues:

I propose that in v8, we set a default background color on the data grid to avoid such issues.

We could make it customizable through the theme mixin:

import { createTheme } from '@mui/material/styles';
import type {} from '@mui/x-data-grid/themeAugmentation';

const theme = createTheme({
  mixins: {
    MuiDataGrid: {
+     background: '#340606',
      pinnedBackground: '#340606',
      containerBackground: '#343434',
    },
  },
});
michelengelen commented 4 days ago

added one more issue