Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing font colors of tabs in Visual Studio 2013 IDE

I cannot find how to change the font colors for the tabs in the Visual Studio 2013 IDE.

Environment -> Fonts and Colors doesn't have anything that allows this. And I can't see anything else that will help.

My problem is that the selected page has bold black font on a relatively dark background, and I have to strain my eyes to see what file is selected.

Any help, suggestions or extensions much appreciated.

like image 893
awrigley Avatar asked Apr 30 '14 17:04

awrigley


People also ask

How do I change the color of a tab in Visual Studio?

To turn on color tabs, navigate to Tools > Options > Tabs & Windows, and select Colorize tabs. There is the option to colorize by project, and the option to colorize by filetype extension is coming soon.

How do I change the color of the control font in Visual Studio?

From the Tools menu, choose Options. Choose Environment > Fonts and Colors. Select an option on the Show settings for drop-down menu. To change the font size for text in an editor, choose Text Editor.

How do I change the color of text in Visual Studio?

On the menu bar, which is the row of menus such as File and Edit, choose Tools > Options. On the Environment > General options page, change the Color theme selection to Dark, and then choose OK. The color theme for the entire Visual Studio development environment (IDE) changes to Dark.


2 Answers

I have just found what I need in the Customize button of the document well (to right of the Document Well, the drop down that lists the tabs that are not visible, at the bottom, Customize). This is available if you install the Productivity Power Tools 2013.

This opens the options for Productivity Power Tools. The relevant one is:

Custom Document Well -> Advanced. (Don't be fooled by the Color Coding option).

Ignore everything except the selected tab drop down (at the bottom of the dialog). Set that to VS Colors and I get a decent, readable selected tab, which was my main problem.

Can't imagine why this is so obfuscated, let alone why the default seems to render unreadable colors.

like image 137
awrigley Avatar answered Sep 21 '22 18:09

awrigley


You can also customize your tab colors manually (VS 2013 Pro w/ Productivity Tools installed).

Go to TOOLS > Options > Productivity Power Tools > Custom Document Well > Check the box for "Color tabs by regular expression", then go to Color Coding >

From there you can add Reg. Ex and customize even by file type. Example - you can have anything that ends in html (ex - .*html which will include .cshtml) to have a certain color:

.*\.*html

Then select your desired color under the "Tab Color" column.

like image 33
Gregg Bursey Avatar answered Sep 22 '22 18:09

Gregg Bursey