Under Investigation Dark Color scheme

This suggestion or issue is currently under investigation.
You meant that you want a better distinction between threads 1&4 and 2&3?
1000050102.webp
 
I'm still looking into this. The only difference so far is in regards to the "is-unread" links having a higher weight.
Code:
.is-unread .structItem-title {
    font-weight: 700;
}
I'm not sure how easy this is to adjust, because it's not a colour difference so much as it is a weight difference.

I'll keep looking into this, I just wanted to give you an update so you know it's still being looked into.
 
i did a code inspect and tried to modify some css to see which class was responsible for that and found it a bit difficult even just tried for around 15 min
 
i did a code inspect and tried to modify some css to see which class was responsible for that and found it a bit difficult even just tried for around 15 min
I think one way of approaching it is to add a font color line to this section of code.

So something a little darker just to help differentiate it more, like this:
Code:
.is-unread .structItem-title {
    font-weight: 700;
    color: #3dcc77;
}

I haven't tested it yet, but I think it should work.
 
I think one way of approaching it is to add a font color line to this section of code.

So something a little darker just to help differentiate it more, like this:
Code:
.is-unread .structItem-title {
    font-weight: 700;
    color: #3dcc77;
}

I haven't tested it yet, but I think it should work.
this may work if not this can work as i tried locally to apply directly a attribute and worked
CSS:
.is-unread .structItem-title a {
    font-weight: 700;
    color: #0be763;
}
and for me this color looks better
#0be763 for unread ones
 
Back
Top