The easiest way to change the color of your scrollbars is to apply the 'scrollbar-base-color' property to the HTML 'body' element.
Note that this code actually changes the color of all scrollbars on the page (including those of form elements such as the 'textarea' element).
The code is..<head>
<style type="text/css">
body {scrollbar-base-color:orange;}
</style>
</head>
<body>
<textarea cols="30" rows="4">
Here's enough text to make this textarea grow scrollbars....
HTML scrollbars, scrollbar color, change browser scrollbars,
css scrollbar, change color of the scrollbar...
</textarea>
</body>