You can use cascading style sheets to set the colors of the scrollbar. There are some online editors that will generate the code for you if you're not familiar with css.
if you know the hex colors you want you can use this
http://www.htmlbasix.com/scrollbargenerator.shtml
and this one has little popup color palettes that allow you to choose a color
http://www.g2gk.com/scrollbar/
you can find a bunch more by searching google for
css scrollbar generator
the code could be used in an embedded style sheet inside the
head tag and might look something like this:
<style type="text/css">
<!--
body {
scrollbar-base-color: aqua;
scrollbar-arrow-color: aliceblue;
scrollbar-track-color: lightblue;
scrollbar-3dlight-color: lightgrey;
scrollbar-highlight-color: lightblue;
scrollbar-darkshadow-color: skyblue;
scrollbar-shadow-color: lightseagreen;
scrollbar-face-color: lightsteelblue;
}
-->
</style>
- <style type="text/css">
- <!--
- body {
- scrollbar-base-color: aqua;
- scrollbar-arrow-color: aliceblue;
- scrollbar-track-color: lightblue;
- scrollbar-3dlight-color: lightgrey;
- scrollbar-highlight-color: lightblue;
- scrollbar-darkshadow-color: skyblue;
- scrollbar-shadow-color: lightseagreen;
- scrollbar-face-color: lightsteelblue;
- }
- -->
- </style>
Free Programming Resources