Hi @NickNN ,
In .NET MAUI, the DatePicker no longer uses the same theming model that Xamarin.Forms used. MAUI renders controls through handlers, not renderers, so Android theme values such as colorAccent or datePickerDialogTheme in styles.xml no longer apply to MAUI dialogs.
Because of this, DatePicker dialogs typically ignore older AppCompat theme overrides, and this is why your OK/Cancel buttons do not change color.
To style the DatePicker buttons in MAUI, you must override the platform dialog using a custom handler, where you can set the dialog's positive/negative button colors manually.
I hope this helps! If my answer was helpful - kindly follow the instructions here so others with the same problem can benefit as well.