Hi @brad.walls11,
Add following CSS code in your site to remove opacity from the text and (+) of the COMMENTS as displayed in the screenshot.
.entry-meta a {
color: #333 !important;
}
.comments-link a {
background: #444 !important;
color: #fafafa !important;
}
.comments-link a .tail {
border-top: 10px solid #444;
transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-ms-transition: all .4s ease-in-out;
}
Cheers,