Pinned text color

hi, how can i change the color of pinned text? like when i have a dark background i want this text white, but when i scroll and the background become white i want that text get darker

Hi @Ludovica_Ferretti, this can be achieved with code injection using the mix-blend-mode property in CSS. I have attached an example of this in action below.

You will need to find the elements data-id and updated the following code.

<style>
[data-id="62a4a17d426f6a001abb828f"] {
mix-blend-mode: difference;
}
</style>