xxxxxxxxxx
<style>
#editor {
--scrollbar-background: #ccc;
}
#editor::-webkit-scrollbar-thumb:vertical {
/* Fallback */
background-color: #ccc;
/* Dynamic value */
background-color: var(--scrollbar-background);
}
</style>
<script>
document.getElementById("#editor").style.setProperty('--scrollbar-background', localStorage.getItem("Color"));
</script>