Today I found it unusual. (The color of the link, which I could not change.) I went into the inspector and first found a set of text-decoration-color properties. But no, that would be too easy. I scroll down to color and find this :not selector, created by the theme author. In my specific case, the solution was to duplicate (overwrite) this weird selector with the color I wanted:
#the-post .entry-content a:not(.shortc-button) { color: white !important; }
My suggestion is to go into your inspector (F12) and find the βCalculateβ tab and see where the colors come from. Usually this is straightforward where the color comes from, and the inspector will even tell you which file and which line number the color has set. Then the solution: do you have access / permission to this file? Or maybe you have access, but you need access to this file?
If you want to avoid changing the color source, for some reason you can simply re-declare the color even further down the page, for example, in the footer or immediately after loading the theme, no matter what happens. Of course, given this option, it is usually preferable to find the root of the problem, and then you will get less CSS code that loads faster and easier to maintain.
source share