html {
  scrollbar-width: thin;
  scrollbar-color: #5B03A3FF rgba(0, 0, 0, 0.08);
}
html.dark {
  scrollbar-color: rgb(142, 255, 1) rgba(255, 255, 255, 0.08);
}
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
}
html::-webkit-scrollbar-thumb {
  background: #5B03A3FF;
  border-radius: 9999px;
  border: 3px solid rgba(255, 255, 255, 0.72);
}
html.dark::-webkit-scrollbar-thumb {
  background: rgb(142, 255, 1);
  border: 3px solid rgba(0, 0, 0, 0.28);
}
html::-webkit-scrollbar-corner {
  background: transparent;
}
