I tried to target base classes as below which doesn't work.
.ant-table .ant-table-container .ant-table-content table thead.ant-table-thead {
background-color: green !important;
}
Is there a working way to achieve this?

Corresponding JSX:
<Table columns={columns} dataSource={dataSource} />
Antd Table Docs: https://ant.design/components/table/
Background Color for Table Header is come from Table Cell. Try using below rule.
.ant-table-thead .ant-table-cell {
background-color: green;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With