It is quite simple actually and doesn't take much code. I thought it would be JavaScript intensive but I forgot about the power of CSS. To change the color to anything that you want simply add this line to the head of your HTML file:
CSS Code:
<style type="text/css">
body {
scrollbar-arrow-color: #EAEAEA;
scrollbar-base-color:#EAEAEA;
scrollbar-shadow-color: #EAEAEA;
scrollbar-highlight-color: #EAEAEA;
scrollbar-dark-shadow-color: #EAEAEA;
scrollbar-3d-light-color: #EAEAEA;
scrollbar-track-color: #EAEAEA;
scrollbar-face-color: #EAEAEA;
}
</style>
Add that to your page and reload! If you have any questions just ask.