XF 2.1 How to change font color in thread message box?

CZ Eddie

Active member
My font is a hard to see grey'ish color and I can't find where to change this text color.
Could someone point me in the right direction?

It says "Write your reply" but you have to squint to make it out.
1577827059920.webp
 
This should help (place in extra.less), will take care of the placeholder and the text color when typing.

Code:
.fr-box.fr-basic .fr-wrapper .fr-element, .fr-box .fr-wrapper .fr-placeholder {
    color: rgb(255, 0, 0);
}
 
Top Bottom