Hi, I am trying to figure out where to change the color within a comment from the standard light grey to black. We have a color blind person that cannot see the following underlined areas on the attached image. Thanks.
You should use CSS codes for this purpose. E.g.
For changing the color of the date/time use this CSS code:
#wpdcom .wpd-comment-date {color: #4a2525;}
For changing the color of the "reply to" section use CSS code:
#wpdcom .wpd-comment .wpd-reply-to{color: #4a2525; }
The red marked value can be changed as you like.
Put the code in the Top Admin Bar > Customize > Additional CSS > "Additional CSS" textarea, save it, delete all caches and check again.
You can find all classes by pressing F12 on the browser and opening Chrome or Firefox Console, it'll help you easily write CSS rules you need to customize.
This website should help you to write CSS rules: https://www.w3schools.com/cssref/default.asp
Thank you sir! I think we are done now, appreciate all your help! 🙂