Color Scroll Bar css

                  /* Elemento base */
::-webkit-scrollbar {
  width: 15px;
}

/* Carril */
::-webkit-scrollbar-track {
  background: #000;	
}
 
/* Manejador */
::-webkit-scrollbar-thumb {
  background: #f9a50b;
  border-radius: 4px;
border: 2px solid #ccc;
}

/* Manejador hover */
::-webkit-scrollbar-thumb:hover {
  background: #fe6c03;
border: 2px solid #309197;
}