Sunday, May 13, 2007

How To Change Browser Scrollbars Colors

Small javascript code snippet that demonstrates how to change browser scrollbars colors. Please pay attention to the correct scroll colors attributes names (so they can be accessed using javascript). Usually javascript naming standard is "camel-case".

with(document.body.style)
{
scrollbarDarkShadowColor = "0000FF";
scrollbar3dLightColor = "87CEFA";
scrollbarArrowColor = "0084ff";
scrollbarBaseColor = "0000FF";
scrollbarFaceColor = "000020";
scrollbarHighlightColor = "0000FF";
scrollbarShadowColor = "0000FF";
scrollbarTrackColor = "00008b";
}

No comments: