<div class="container"></div>
:root {
  --space-color: transparent;
  --thumb-color: #ff973e;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--thumb-color) var(--space-color);
}

body {
  margin: 0;
}

.container {
  width: 400vw;
  height: 400vh;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: var(--space-color);
}

::-webkit-scrollbar-thumb {
  background: var(--thumb-color);
}

::-webkit-scrollbar-corner {
  background: var(--space-color);
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.