TabView Background Color

Hello

I'm trying to use a TabView inside of the Sidebar in a NavigationSplitView.

I'm wanting to use .listStyle(.sidebar) in order to get the Liquid Glass effect.

However I can not find a way to remove the background of the TabView without changing the behavior of the TabView itself to paging with .tabViewStyle(.page)

NavigationSplitView {
    TabView(
        selection: .constant("List")
    ) {
        Tab(value: "List") {
            List {
                Text("List")
            }
        }
    }
} detail: {
    
}

Note: I wanting change the background of the TabView container itself. Not the TabBar.

TabView Background Color
 
 
Q