How to change color of sidebar scroll indicator

I’m new to Webflow, and have a question about changing color of sidebar scroll indicator. I cloned a project I really like but I’m unable to pinpoint how to change the color of sidebar scroll indicator.

Here is my public share link: https://showcasesearch.webflow.io/projects/https-webflow-com-website-spruce-rapid-rfsn-1495911-39ce0

hey. I have the same question. Any news?

You can do this with custom CSS on webkit browsers ( Chrome, Safari… )
But Firefox would be different.

<style>
body::-webkit-scrollbar {
  width: 12px; 
}
body::-webkit-scrollbar-thumb {
  background-color: #2095A4; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Radius of the scrollbar thumb */
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #2AC4D8; /* Hover color */
}
</style>