Change the Color of a Button?

Hallo, I would like to change the Color of my Menu includes the Buttons inside. How can I do this?

    NavigationView{
        Text("")
            .toolbar{
                ToolbarItem(){
                    
                    Menu("Menu"){
                        Button("Reset Count", action: {self.count = 0})
                        
                        Menu("Cars"){
                            Button("Car 1", action: {self.image = "car"})
                            Button("Car 2", action: {self.image = "car2"})
                        }
                    }
                }
            }
    }`

It is not possible directly, using foregroundColor.

Have a look here at possible options: https://softwareanders.com/swiftui-menu-a-complete-guide/#:~:text=You%20can%27t%20really%20change,to%20create%20a%20custom%20menu.

Nice so I can change the color to red. But is possible to change it to Green or something?

Change the Color of a Button?
 
 
Q