Hello - I’m using the Feature theme and have the accent color set to #6d9e9e; however when I look at the live posts and pages it shows any links as black/underlined and not using this tealish color. Weirdly, when I’m in the post editor I can see the color is correct, but it’s not when it’s live.
The editor doesn’t actually apply your theme’s styles. It’s not unusual for the editor to look a bit different from the published version. (That’s why there’s a preview button!)
It sounds like the theme developer made a different style choice than the one you want. You can drop this into your code injection:
<style> .s-entry-content a { color: var(--ghost-accent-color); } </style>
Yep. var(--ghost-accent-color) means to sub in the variable named “ghost accent color”. You need just color: #aaabbb; on that line if you’re going to hard-code the color.