I searched google for a while, and found a working css code to change the scrollbar colors.
Tested it with: Firefox, Edge & Chrome
Code: Select all
/* Browser Scrollbar Colors */
/* Chrome, Edge */
::-webkit-scrollbar {
width: 15px !important;
height: 15px !important;
}
::-webkit-scrollbar-track-piece {
background-color: #595959 !important;
}
::-webkit-scrollbar-thumb:vertical {
height: 30px !important;
background-color: #0064c8 !important;
}
/* Firefox */
html,body{
scrollbar-color: #0064c8 #595959 !important;
}
/* Browser Scrollbar Colors */
