I’ve searched through every CSS element I could find through the console and I tried my best to change colors and wraps but I cannot find a way to change the color of the tag bullet & icon. Whenever the scroll-down header animation initiates, the tag color goes from visible to hardly visible. Is this even possible to do via CSS?
You need to look at before and after pseudo selectors too

So in this case you need to add
.discourse-tag.bullet:before {
color: $header_primary;
}
Right, so you want to be more specific
.d-header {
.discourse-tag.bullet:before {
color: $header_primary;
}
}
Wow CSS never fails to impress me with the amount of possibilities. I really appreciate your support @awesomerobot, you continue to motivate me to fully learn CSS ![]()

