Datatable dark template

I’d like to be able to use a datatable with a dark themed dashboard.

with style_filter={‘backgroundColor’: ‘black’, ‘color’: ‘white’} still black text on black background;
with style_table={‘backgroundColor’: ‘black’, ‘color’: ‘white’} page numbers are still on a white background.

Would love to have a template=‘plotly_dark’ option?

dash_table.DataTable(...,
style_filter={'backgroundColor': 'black'}, 
style_header={'backgroundColor': 'black'},
style_cell={'backgroundColor': 'black', 'color': 'white'})