I'm trying to put a dark-mode toggle switch in my title bar. When doing so with the VS2019 light theme (toggles to VS2019 dark), the square is totally black, it stands out like a sore thumb. Ideally, it would have (any other color that aligns with the theme). Ideally, I'd like to be able to round the corners of the middle-thing, but the documentation only shows the outside corner radius.
Do I have any options here?
XAML<dxe:ToggleSwitchEdit
Margin="{StaticResource DefaultRightMargin}"
CornerRadius="5"
IsChecked="{Binding ThemeDarkModeActive}" />
</dxc:ThemedWindow.HeaderItems>