Change Leave a Reply (comment form) text color for WordPress theme

First of all Aigars, thanks a lot for creating these amazing themes and making them free, that is vey generous of you.

How can I change the tag text to tell the user what to fill to leave a reply on posts?

I mean this text

  • Your email address will not be published. Required fields are marked
  • Name
  • Email
  • Website
  • Comment

My background is dark so I want to have this specific text in white.

Thank you for your feedback! I really appreciate it!

You can change text around comment form and required fields by adding this simple CSS to Appearance >> Theme Options >> Other >> Custom CSS.

#commentform {
    color: #fff;
}

This code will change font color for comment area to white but you can use any color code you want.

Let me know if you need any further assistance with this.

Thanks a lot, that did the trick!