Any way to make selected tabs more distinct from the rest?

English support forum

Moderators: white, Hacker, petermad, Stefan2

Post Reply
User avatar
commodore
Member
Member
Posts: 154
Joined: 2005-08-03, 12:55 UTC

Any way to make selected tabs more distinct from the rest?

Post by *commodore »

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.
hi5
Power Member
Power Member
Posts: 551
Joined: 2012-11-03, 11:35 UTC
Contact:

Re: Any way to make selected tabs more distinct from the rest?

Post by *hi5 »

You can add

Code: Select all

ActiveTabColor=16750641
to your wincmd.ini [Colors] section (manually by editing it in notepad.exe for example) - now you will have blue gradient active tabs.
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)
User avatar
commodore
Member
Member
Posts: 154
Joined: 2005-08-03, 12:55 UTC

Re: Any way to make selected tabs more distinct from the rest?

Post by *commodore »

Thanks, looks better. Is there a "legend" on color codes/numbers somewhere? It doesn't look like a rgb code.
User avatar
Dalai
Power Member
Power Member
Posts: 9393
Joined: 2005-01-28, 22:17 UTC
Location: Meiningen (Südthüringen)

Re: Any way to make selected tabs more distinct from the rest?

Post by *Dalai »

2commodore
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)
Regards
Dalai
#101164 Personal licence
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64

Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
User avatar
Usher
Power Member
Power Member
Posts: 1675
Joined: 2011-03-11, 10:11 UTC

Re: Any way to make selected tabs more distinct from the rest?

Post by *Usher »

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)
Andrzej P. Wozniak
Polish subforum moderator
User avatar
hlloyge
Member
Member
Posts: 131
Joined: 2006-11-02, 23:14 UTC

Re: Any way to make selected tabs more distinct from the rest?

Post by *hlloyge »

hi5 wrote: 2022-04-18, 19:11 UTC You can add

Code: Select all

ActiveTabColor=16750641
to your wincmd.ini [Colors] section (manually by editing it in notepad.exe for example) - now you will have blue gradient active tabs.
Just to mention, it doesn't work with dark scheme.
User avatar
funkymonk
Senior Member
Senior Member
Posts: 416
Joined: 2013-12-04, 09:56 UTC

Re: Any way to make selected tabs more distinct from the rest?

Post by *funkymonk »

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.)
User avatar
sqa_wizard
Power Member
Power Member
Posts: 3864
Joined: 2003-02-06, 11:41 UTC
Location: Germany

Re: Any way to make selected tabs more distinct from the rest?

Post by *sqa_wizard »

Just to mention, it doesn't work with dark scheme.
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]
#5767 Personal license
User avatar
commodore
Member
Member
Posts: 154
Joined: 2005-08-03, 12:55 UTC

Re: Any way to make selected tabs more distinct from the rest?

Post by *commodore »

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)?
User avatar
white
Power Member
Power Member
Posts: 4623
Joined: 2003-11-19, 08:16 UTC
Location: Netherlands

Re: Any way to make selected tabs more distinct from the rest?

Post by *white »

commodore wrote: 2022-04-24, 17:38 UTC How about the gradient, is it always enabled on tabs?
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.
hi5
Power Member
Power Member
Posts: 551
Joined: 2012-11-03, 11:35 UTC
Contact:

Re: Any way to make selected tabs more distinct from the rest?

Post by *hi5 »

white wrote: 2022-04-24, 17:53 UTC
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.
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.png
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)
User avatar
hlloyge
Member
Member
Posts: 131
Joined: 2006-11-02, 23:14 UTC

Re: Any way to make selected tabs more distinct from the rest?

Post by *hlloyge »

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]
:) that's what I missed, thanks, works now.
Post Reply