Hey there,
In order to change the text color for each of the categories, you need to download and paste the attached
default.main.php file into the template override location which is at
JoomlaFolder/templates/yourCurrentTemplate/html/com_easyblog/blogs/latest/default.main.php.
Then, you need to add the following CSS code into your
Backend > Themes > Custom CSS:
For an example, you want to change the text color of category 'Quotes' and 'Story'
body #eb .eb-post-meta a[title="Quotes"] {
color: #ffffff;
background:#ffffff;
}
body #eb .eb-post-meta a[title="Story"] {
color: #ffffff;
background:#ffffff;
}
Do take note that you need to change the color code to the color that you want.
Do clear all of your cache before you see the changes.
Can you have a try and see how it goes?