How to change color and size of right scrollbar width?

Hi,
I use Joplin 1.6.7 on Windows 10 64 bit.
Scrollbar contrast

Is there a way to make the width of the right scrollbar a little bit wider and also change the color? For me, the contast is to small.

(Is there elsewhere a topic or wiki where it is documented?)

Greetings,

merlinuwe

You can use the ::webkit-scrollbar selector. Below is an example, but the link has much more!
Just place this code in userstyle.css (and userchrome.css if you want it on all scrollbars)

::-webkit-scrollbar {
	width: 20px;
}
::-webkit-scrollbar-thumb {
    background-color: white;
}

There is a wiki for sharing customizations as well as a thread for sharing. The wiki includes a link with an introduction on how to discover css classes to target for customization, but ultimately you'll need to either know css or refer to customizations that people share.

Thank you very much.
Scrollbar contrast new