I have an app that is launching a window via the WindowService open method and I want to set the "themeColor" for the window. There is no themeColor property available in the WindowsSettings. I did try setting it via htmlAttributes, but that didn't have any effect.
Am I just missing something?
const windowRef = this.windowService.open({
title: appointment.event?.name,
content: AppointmentModalViewComponent,
width: 500,
minWidth: 450,
htmlAttributes: {
"themeColor": "primary"
}
});