How do I change the Highlighted Active Item in the Solution Explorer window in Visual Studio 2022? Operating system is Windows 10
How to Change Active Item Highlight Color in Visual Studio 2022
836 Views Asked by JaySym At
1
There are 1 best solutions below
Related Questions in WINDOWS-10
- How to immediately apply DISPLAYCONFIG_SCALING display scaling mode with SetDisplayConfig and DISPLAYCONFIG_PATH_TARGET_INFO
- Spring @Scheduled cron fixed time doesn't work with OS suspension
- Swapping a healthy and unallocated partition in Windows 10
- Installing Docker on Windows 10
- Unexpected OS Shutdown
- Segfault GTK4 on windows 10
- FileSystemWatcher works reliably, unless I write to a log file
- IDT Audio Codec and Driver
- How can I use System.Security.Cryptography.ChaCha20Poly1305 on Windows 10?
- $WinREAgent folder keeps to automatically appear
- Powershell's InvokeVerb("delete") freezes after 22H2 update
- sdkmanager --list Exception in thread "main"
- Batch file wont run in Task Scheduler in Windows 10
- STM32 Not recognized by Windows 10
- C# X509Certificate2 private key disappear when GC occurs
Related Questions in VISUAL-STUDIO-2022
- Visual Studio scaffolded Create form does not work in ASP.NET Core 8 MVC
- Finding a specific colour within a bitmap range - VB.net 2022
- How to enable warning C6067 during (WDM) Windows driver compilation in VS 2022?
- What should I do if Visual Studio has a restriction on creating files with a long name or a long path to these files?
- new window with c++ qt
- Migrate Old VS 2015 .suo file to the New VS 2022 DocumentLayout.json
- The file "spng.dll" is not founded in my Visual Studio's project and i get an error
- Getting MSB3174 Invalid value for 'AssemblyVersion' in C# .NET 6 Windows Forms app
- Why do I get weird class method redefinition errors when I compile with Visual C++ 2022?
- Opening external files (docs, picttures, ...) form commentlines in VisualStudio 2022
- New install of Visual Studio 2022 does not show project templates
- How to create a REST API with .NET Framework?
- After reinstalling VS 2022 professional, my project compilation returns warning C4566
- Why am I getting intellisense in .cshtml comments and how to do I turn it off in VS2022 17.9.5?
- How to find winform application in visual studio 2022?
Related Questions in SOLUTION-EXPLORER
- Icons for Visual Studio 2017 Solution Explorer file types
- VS2022 Showing Lots of .TMP Files in Solution Explorer
- Cannot find path specified when trying to add existing embedded resource in Visual Studio 2022
- Github actions are not shown in solution explorer in Visual Studio 2022
- Edits not effects on solution explorer after closing vs 2022 and reopen it. Even though it effects after i add it directly
- VSIX call to track file in Solution Explorer seems to be async in Visual Studio 2022
- Visual Studio for Mac Solution Explorer Not Showing All Components
- Winforms app missing files in Solution Explorer
- Visual Studio 2022 - Solution Explorer not populating - Failed to create view with exception: System.Runtime.InteropServices.COMException (0x8000FFFF)
- Missing nested button in Visual Studio Community 2022
- Files 'dragged and dropped' into solution explorer in Visual Studio Community 2022 can't be tracked in git?
- How to Change Active Item Highlight Color in Visual Studio 2022
- Is there a way to pull info from a file in the solution explorer and display it on a blazer server app? (not sure if this is allowed)
- DLL should not be visible in VS solution explorer
- Visual Studio 2022 is Auto-collapsing Solution Explorer Folder Trees
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Out of the box, Visual Studio does not appear to have an option to change this. However, you can change this if you install an extension called Visual Studio Color Theme Designer. I've gone over how to use this extension in this answer but in short, you will need to create a VSTheme project, select a base theme, and then change the properties of the controls you want to change.
Once you set it up, find the following controls:
Under All Elements → Tree View:
SelectedItemActive(the first one which is for the background)SelectedItemActive(the second one, which is for the foreground/text)After you find these two, change the color of them to whatever you desire, and apply the theme. You may also want to change
SelectedItemInactive(again, there are two where one is for the background, and the other is for the foreground).You can see here that I've changed mine to a bright green with blue text:
Note that this will also change similar windows that use a "tree view" since it is a shared property between the various windows (for example, Server Explorer will also inherit these settings).