Any way to make selected tabs more distinct from the rest?
Moderators: Hacker, petermad, Stefan2, white
Any way to make selected tabs more distinct from the rest?
Is there any way to make the selected folder tabs on both panes visually more distinct from the other tabs? It was fine until Windows 7, don't remember much about Windows 10, but on Windows 11 the selected tabs are just a tiny bit more bright than the others. Sometimes you have to look hard to discern which one is currently selected.
Re: Any way to make selected tabs more distinct from the rest?
You can add to your wincmd.ini [Colors] section (manually by editing it in notepad.exe for example) - now you will have blue gradient active tabs.
Code: Select all
ActiveTabColor=16750641
F4MiniMenu (Forum) - Open selected file(s) from TC in defined editor(s) - A (minimalistic) clone of F4Menu
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Re: Any way to make selected tabs more distinct from the rest?
Thanks, looks better. Is there a "legend" on color codes/numbers somewhere? It doesn't look like a rgb code.
Re: Any way to make selected tabs more distinct from the rest?
2commodore
It's BGR, similar to RGB, and and it's documented in TC's help file, section 4.b (part 2). Example:
Regards
Dalai
It's BGR, similar to RGB, and and it's documented in TC's help file, section 4.b (part 2). Example:
Code: Select all
BackColor=16777215
Background color (RGB: red+256*green+65536*blue, each value in range 0..255, or hex in form $BBGGRR)
Dalai
#101164 Personal licence
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Re: Any way to make selected tabs more distinct from the rest?
It is RGB value saved as a decimal number. Convert it to six digit hex number and divide into three parts in reverse order (BGR).
In this case 16750641=0xFF9831 which gives (remember about reverse order!):
R=0x31=49
G=0x98=152
B=0xFF=255
or RGB=(49,152,255)
In this case 16750641=0xFF9831 which gives (remember about reverse order!):
R=0x31=49
G=0x98=152
B=0xFF=255
or RGB=(49,152,255)
Andrzej P. Wozniak
Polish subforum moderator
Polish subforum moderator
Re: Any way to make selected tabs more distinct from the rest?
Just to mention, it doesn't work with dark scheme.hi5 wrote: 2022-04-18, 19:11 UTC You can addto your wincmd.ini [Colors] section (manually by editing it in notepad.exe for example) - now you will have blue gradient active tabs.Code: Select all
ActiveTabColor=16750641
Re: Any way to make selected tabs more distinct from the rest?
BTW: It would be great if TC could accept the #RRGGBB format for colors in the ini file...
(I will put this into the suggestions forum.)
(I will put this into the suggestions forum.)
- sqa_wizard
- Power Member
- Posts: 3893
- Joined: 2003-02-06, 11:41 UTC
- Location: Germany
Re: Any way to make selected tabs more distinct from the rest?
Still works fine here.Just to mention, it doesn't work with dark scheme.
Note:
- For light mode you have to add the setting to section [Colors]
- For dark mode you have to add the setting to section [ColorsDark]
#5767 Personal license
Re: Any way to make selected tabs more distinct from the rest?
How about the gradient, is it always enabled on tabs?
Also, quite a while ago, I used TWinKey Utilisator plugin for configuring colors. Any idea if it's still compatible with current TC (I see it hasn't been updated in a while)?
Also, quite a while ago, I used TWinKey Utilisator plugin for configuring colors. Any idea if it's still compatible with current TC (I see it hasn't been updated in a while)?
Re: Any way to make selected tabs more distinct from the rest?
Has just been answered.
ghisler(Author) wrote: 2022-04-24, 08:33 UTC All tab colors are gradient. I did try with solid colors and it looked absolutely horrible.
Re: Any way to make selected tabs more distinct from the rest?
Personal preference of course, but I don't think this yellow tab looks horrible - for comparison the blue gradient next to it https://github.com/hi5/_resources/blob/master/tab.pngwhite wrote: 2022-04-24, 17:53 UTCghisler(Author) wrote: 2022-04-24, 08:33 UTC All tab colors are gradient. I did try with solid colors and it looked absolutely horrible.
F4MiniMenu (Forum) - Open selected file(s) from TC in defined editor(s) - A (minimalistic) clone of F4Menu
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Source at GitHub (AutoHotkey). TCSyncComments (copy file comments)
Re: Any way to make selected tabs more distinct from the rest?
sqa_wizard wrote: 2022-04-24, 17:10 UTC Still works fine here.
Note:
- For light mode you have to add the setting to section [Colors]
- For dark mode you have to add the setting to section [ColorsDark]
