Blue Topez Bullet Threading Change Color?

What I’m trying to do

I’m trying to change the color of bullet threading in blue topez theme as shown in the image. I’ve tried changed to other themes, none of them have these colorful threading so I’m assuming this is unique to blue topez.

Things I have tried

Looking through the creator’s theme, this is something that has been adapted from This Github Repo:

These colors are done via spinning a color wheel (lighter base colors make lighter themes), so you can change the overall theme by editing just the base color either globally in a snippet:

.HyperMD-list-line {
    --bt-connected-indent-line-color: #b7f0be; /* Example color */
}

Or by defining it within your own class and just add it on each page you wish to change it for.

You could also edit it to create you own color scheme by messing with each filter transformation. Just copy lines 13344 - 13561 from the theme pack into your own snippet then edit accordingly.

(You could also use that snippet with other themes I guess, but you would have to also copy over or recreate all related variables and maybe some more work)

I’ll give it a try! Thank you so much for your help!