Why is the Visual Studio Code
native-mode menu dropdown white
, even though I have dark mode activated and I use Fedora Linux
and the dark mode is activated in Fedora
, yet it is white? What is the solution as shown in the picture?
I don't try anything because I can't know the problem.
I'm not sure why the native menu bar is showing up for you with light mode colouring. Supposedly, you can switch to dark mode on the GNOME desktop environment with the following:
gsettings set org.gnome.desktop.interface gtk-theme Adwaita-dark
(or whatever other dark mode theme is available on your machine)
But if that doesn't work, you can get colouring consistent with your selected colour theme in VS Code (v1.101+) by putting this in your settings.json:
"window.menuStyle": "custom",
(you might need to close and reopen VS Code for the change to apply).
You can also change both the title bar style and menu style by leaving that setting as is and instead putting this in settings.json:
"window.titleBarStyle": "custom",
The description for that setting:
Adjust the appearance of the window title bar. On Linux and Windows, this setting also affects the application and context menu appearances. Changes require a full restart to apply.