How do I get rid of the tag colors?

Maybe I missed it in options, but the tag colors are horrible on this forum, any way to disable the colors?

You can try this:
a {
color: green;
text-decoration: none;
}

a:hover
{
color:yellow;
text-decoration:none;
cursor:pointer;
}

Look in your template.liquid and find something like this:

{% for tag in collection.tags %}

  • {{ ‘+’ | link_to_add_tag: tag }}{{ tag | highlight_active_tag | link_to_tag: tag }}
  • {% endfor %}
    and delete or (I recomend) comment it out.
    It’s in there. I promise. The best thing to do to change that color globally is to copy and paste your style sheet into a text editor and do a “find/replace” for what you want to change.

    Yeah, try adding the code given by jony… :)