Kembali ke artikel Mengubah style scrollbar web

Merah

::-webkit-scrollbar { -webkit-appearance: none; }
::-webkit-scrollbar:vertical { width: 6px; }
::-webkit-scrollbar:horizontal { height: 6px; }
::-webkit-scrollbar-thumb {
  background-color: #B72915;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.15);
}
::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,.15);
}

Hijau

::-webkit-scrollbar { -webkit-appearance: none; }
::-webkit-scrollbar:vertical { width: 6px; }
::-webkit-scrollbar:horizontal { height: 6px; }
::-webkit-scrollbar-thumb {
  background-color: #528B21;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.15);
}
::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,.15);
}

Biru

::-webkit-scrollbar { -webkit-appearance: none; }
::-webkit-scrollbar:vertical { width: 6px; }
::-webkit-scrollbar:horizontal { height: 6px; }
::-webkit-scrollbar-thumb {
  background-color: #0D8FDB;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.15);
}
::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,.15);
}

Kuning

::-webkit-scrollbar { -webkit-appearance: none; }
::-webkit-scrollbar:vertical { width: 6px; }
::-webkit-scrollbar:horizontal { height: 6px; }
::-webkit-scrollbar-thumb {
  background-color: #CECE0F;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.15);
}
::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,.15);
}