.is-unread .structItem-title {
font-weight: 700;
}
I think one way of approaching it is to add a font color line to this section of code.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
.is-unread .structItem-title {
font-weight: 700;
color: #3dcc77;
}
this may work if not this can work as i tried locally to apply directly a attribute and workedI 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.
.is-unread .structItem-title a {
font-weight: 700;
color: #0be763;
}