ScrollBar style Generator
This tool generates the scrollbar style.
Copy the code below and paste on your css
/* Firefox */
* {
scrollbar-width: auto;
scrollbar-color: #1c4ee3 #6e6e6e;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 15px;
}
*::-webkit-scrollbar-track {
background: #6e6e6e;
}
*::-webkit-scrollbar-thumb {
background-color: #1c4ee3;
border: 5px solid #6e6e6e;
border-radius: 10px;
}