Hello,
Usually font color come from your template, but if that don't fit your needs you can always use custom css commands.
First have a look on this documentation,
here
to see how to proceed
Example of custom css command (Schematic diagram, you have to replace the elements of the selector so that it targets what you need).
.your_module_class p {
color: red // or whatever color required.
}
In order to get your required selector, use your inspector tool (point your element, right-click => inspector tool).
Documentation:
- Around
Selector in css
commands
- How to use
Inspector tool
(in chrome as example)
Hope this will help you.
Regards