How to change the title color of programs in Windows 8?

5,114

You can modify single colors when you switch to the Aero Lite style themes.

To do that, you need to export a theme (preferably the one you're currently using). The .themepack files are actually CAB files and can be edited like those (simply change the file extension or add .cab at the end of it). They will contain a .theme file which is actually an INI.

Find the VisualStyles section and change the Path property:

[VisualStyles]
Path=%SystemRoot%\resources\themes\Aero\AeroLite.msstyles

If you apply that theme now, you will see some changes to the UI already, which are most likely undesirable. But I wanted to show this approach anyway.

You can now set the colors in the same .theme file, like so:

[Control Panel\Colors]
InactiveTitleText=20 20 20
TitleText=0 128 255

enter image description here

.theme files can be applied to the system by simply processing them with the default application assigned to the file type.

Share:
5,114

Related videos on Youtube

allquixotic
Author by

allquixotic

SOreadytohelp I actively encourage the editing of any of my Question, Answer, and Tag Wiki content on all StackExchange sites except for meta sites. In other words, if you spot an inaccuracy or wish to clarify or improve a post of mine, add sources, etc., PLEASE do so! It will greatly benefit the net welfare and knowledge capital of the community. I am writing this here just in case you are of the misconception that answers are like forum posts, indelible articles authored by a single person. The edit function is there for a reason, folks. I promise to never lash out at someone for substantially editing content originally authored by me, as long as your edit is constructive. If you don't yet have the site privilege to make instantaneous edits and I see your edit in the suggestion queue, I will do my best to either accept your edit outright, or incorporate the most useful parts of your edit into my post by "editing your edit". If you have been told before that you shouldn't substantially edit others' answers, or if you've been the victim of polemic as a result of doing so, I'd like to apologize for that behavior. I think it's very counterproductive; our community is much worse-off for that kind of attitude. Future visitors are best served by being able to read one cohesive, well-edited answer with sources to get the sum-total of the community's best knowledge in a single answer. A string of answers or comments each with their own nuggets of truth is much harder to decipher than one cohesive text. With the edit function, thanks to the fact that we each bring our own perspectives and unique knowledge, it is possible for us to author one cohesive text that eliminates the natural tendency of comment strings, replacing it with high-quality works that rival those of Wikipedia. BTW, I don't approve of most edits on meta sites because I very rarely find questions on meta sites which deal purely in factual matters, so my answers are generally just my personal feelings on the matter.

Updated on September 18, 2022

Comments

  • allquixotic
    allquixotic almost 2 years

    I would like to change the color of the window title text on:

    • Windows 8 Professional x64
    • With all Aero features enabled
    • On the desktop (not in MUI mode)

    Have tried various existing solutions for Windows 7 Aero and they don't work on Windows 8. Is there any way to do this on Windows 8?

    The red ellipse in the below screenshot was added by me; clearly, it is not part of the actual UI. I just wanted to draw attention to the actual text whose color I want to change (ideally, without changing text elsewhere in the operating system, besides window text!)

    notepad title

  • Drazen Bjelovuk
    Drazen Bjelovuk over 8 years
    On Windows 10, this only seems to change the title color for Explorer windows. Any other application windows are ignored.