How can I change the header background color in an AgGrid table for specific columns only?

I can use GridOptionsBuilder to change the color of cells, but not the header.

gb = GridOptionsBuilder()

gb.configure_column(field=“Name”, width=100, cellStyle = {“background”: “red”}, )

go = gb.build()

AgGrid(df, gridOptions = go, width=400)