Color of column
Color of column
Hi, on the forum I saw this image and I was wondering if it is possible to set the color of a sole column like the yellow colored one in the picture (possibly it was edited afterwards?). If it is possible, then how?
Thanks, regards, kazzy
Thanks, regards, kazzy
Re: Color of column
Everything doesn't have an option to set a column color yet.
I used a custom highlighting color for this image.
You can set the highlight color under Tools -> Options -> Fonts and colors -> Item=Result List -> Highlighted -> Foreground color -> Yellow.
The whole column is highlighted because of the in the search.
Would a property_color advanced setting be useful, where you can set the color of each column?
I used a custom highlighting color for this image.
You can set the highlight color under Tools -> Options -> Fonts and colors -> Item=Result List -> Highlighted -> Foreground color -> Yellow.
The whole column is highlighted because of the
c:\windows\media;c:\backup\
Would a property_color advanced setting be useful, where you can set the color of each column?
Re: Color of column
hello David, thanks a lot for your explanation!
With regard to your question: to me it would be meaningful to have this option.
For instance: I use the 3-date columns (created, modified, accessed) and I would be interested in giving two or three of them their own color. I feel that in general the option would help to further enhance the usefulness of the Everything-interface.
Kind regards, kazzy
With regard to your question: to me it would be meaningful to have this option.
For instance: I use the 3-date columns (created, modified, accessed) and I would be interested in giving two or three of them their own color. I feel that in general the option would help to further enhance the usefulness of the Everything-interface.
Kind regards, kazzy
-
- Posts: 495
- Joined: Thu Dec 15, 2016 9:44 pm
Re: Color of column
For me, the more varied colour options the better - humans tend to be very colour-orientated.
I think a column stylisation setter could be added to the Add Columns type dialog (also available with Edit from Organise Columns). Presumably Everything could just save the resulting non-defaults to an option string in the advanced options that could also be edited manually.
Under Options - "Fonts and colours" there could then be a helpful button to launch that Column Organiser to edit the colours.
d
I think a column stylisation setter could be added to the Add Columns type dialog (also available with Edit from Organise Columns). Presumably Everything could just save the resulting non-defaults to an option string in the advanced options that could also be edited manually.
Under Options - "Fonts and colours" there could then be a helpful button to launch that Column Organiser to edit the colours.
d
Re: Color of column
Everything 1.5.0.1372a adds basic support for customizing the column text color.
To set the column text color:
To set the column text color:
- In Everything 1.5, from the Tools menu, click Options.
- Click the Advanced tab on the left.
- To the right of Show settings containing, search for:
column - Select: column_colors
- Set the value to a json array of color objects.
For example, set the Size column text color to Cyan and the Date Modified column text color to Magenta:name should match the column name. (or property canonical name or alias)Code: Select all
[{"name":"size","foreground_color":"#00ffff","dark_foreground_color":"#00ffff"},{"name":"dm","foreground_color":"#ff00ff","dark_foreground_color":"#ff00ff"}]
Use foreground_color for the standard theme and dark_foreground_color for the dark theme.
The color format is: #RRGGBB where RR is the Red value in hex, GG is the Green value in hex and BB is the Blue value in hex. - Click OK.
Re: Color of column
hi David, thanks a lot for implementing and this message! Trying to make it work.
Let's take the image on the top of this thread as an example.
Name of the column is 'path'. color is yellow (I take this yellow: #ffff00), mode is (or appears to be) dark.
That would result in:
[{"Path":"size","dark_foreground_color":"#ffff00"},"Path":"dm","dark_foreground_color":"#ffff00"}]
I must be doing something (quite) wrong here . If I enter this line in my 72a dark mode Everything it does not yet produce the result of the path column being yellow.
kind regards, Kazzy
Let's take the image on the top of this thread as an example.
Name of the column is 'path'. color is yellow (I take this yellow: #ffff00), mode is (or appears to be) dark.
That would result in:
[{"Path":"size","dark_foreground_color":"#ffff00"},"Path":"dm","dark_foreground_color":"#ffff00"}]
I must be doing something (quite) wrong here . If I enter this line in my 72a dark mode Everything it does not yet produce the result of the path column being yellow.
kind regards, Kazzy
Re: Color of column
Is "name", literal?
So this would color size & dm:
(Just using foreground, removed the dark_, & changed the colors too.)
(Not my cup of tea, btw.)
So this would color size & dm:
Code: Select all
[{"name":"size","foreground_color":"#00fff0"},{"name":"dm","foreground_color":"#00ff00"}]
(Not my cup of tea, btw.)
Re: Color of column
This is missing the name identifier.[{"Path":"size","dark_foreground_color":"#ffff00"},"Path":"dm","dark_foreground_color":"#ffff00"}]
To set the Path column text color to Yellow, please try:
[{"name":"Path","dark_foreground_color":"#ffff00"}]
-
- Posts: 687
- Joined: Wed Jun 01, 2022 5:01 pm
Re: Color of column
I have just collected a bunch of ideas for expanding this aspect of Everything: viewtopic.php?t=14910meteorquake wrote: ↑Sun Mar 31, 2024 12:41 pm For me, the more varied colour options the better - humans tend to be very colour-orientated.
[...]
Re: Color of column
Works like a charm!! Thanks David!