Is there any way of changing the background color marked bellow?

Until now I managed to change the background color like this:
<style name="DialogTheme" parent="Theme.MaterialComponents.DayNight.Dialog" >
<item name="android:backgroundTint">#141414</item>
</style>
and applied it like this:
TimePickerDialog timePickerDialog = new TimePickerDialog(getActivity(), R.style.DialogTheme, listener, hour, minute, false);
I'm running Android Pie.