Styling faded elements when filtering

I find faded tree elements when filtering/searching of being still too dark and when on a long list my eyes keep tripping on the faded elements instead of on the filter/search results, I would like them to be even lighter (or darker).

How do I do that? Ideas? I looked at the CSS but wasn’t able to locate the style.

found it… (also I posted in the wrong category)

li.dimmed>div.coreDiv {
opacity: 0.5
}

Changed it to this and I am an happy camper (this also desaturate the dimmed line, meaning that tags, embedded images and emojii will all be in grayscale)

li.dimmed>div.coreDiv {
opacity: 0.3; /* Sets transparency /
filter: hue-rotate(180deg) saturate(0); /
Applies a color filter */
}

1 Like